summaryrefslogtreecommitdiff
path: root/xmlhelp
diff options
context:
space:
mode:
Diffstat (limited to 'xmlhelp')
-rw-r--r--xmlhelp/source/cxxhelp/provider/databases.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/databases.hxx b/xmlhelp/source/cxxhelp/provider/databases.hxx
index 905c86cf0f4d..85857003761d 100644
--- a/xmlhelp/source/cxxhelp/provider/databases.hxx
+++ b/xmlhelp/source/cxxhelp/provider/databases.hxx
@@ -156,7 +156,7 @@ namespace chelp {
{
bool operator()( const OUString& rKey1, const OUString& rKey2 ) const
{
- return rKey1.compareTo( rKey2 ) == 0;
+ return (rKey1 == rKey2);
}
};
@@ -351,7 +351,7 @@ namespace chelp {
{
bool operator()( const OString& rKey1, const OString& rKey2 ) const
{
- return rKey1.compareTo( rKey2 ) == 0;
+ return (rKey1 == rKey2);
}
};
2014-09-25java: when rethrowing exceptions, store the original causeNoel Grandin 2014-08-20java: remove unnecessary constructor declarationsNoel Grandin 2014-08-19java: use 'Byte.valueOf' instead of 'new Byte'Noel Grandin 2014-08-19java: use 'Short.valueOf' instead of 'new Short'Noel Grandin 2014-08-19java: use 'Long.valueOf' instead of 'new Long'Noel Grandin 2014-08-19java: use 'Integer.valueOf' instead of 'new Integer'Noel Grandin 2014-08-12java: add @Override annotation to overriding methodsNoel Grandin 2014-08-08java: remove dead methodsNoel Grandin 2014-08-04java: implement optimisation in UnoRuntime#setCurrentContextNoel Grandin 2014-07-22ridljar: javadoc & Overriderbuj 2014-05-01Many spelling fixes: directories r* - z*.Pedro Giffuni 2014-01-31Silence javadoc 8 errorsStephan Bergmann 2014-01-31Remove UNOIDL "array" and "union" vaporware remnantsStephan Bergmann 2013-10-25gbuild: refactor UnoApi to remove rdb files from OUTDIRMichael Stahl