diff options
author | Sameer Deshmukh <sameer.deshmukh93@gmail.com> | 2013-04-22 00:43:56 +0530 |
---|---|---|
committer | Fridrich Strba <fridrich@documentfoundation.org> | 2013-04-22 07:29:20 +0000 |
commit | ca54015d7ea10f5648bccb2adfb7a321747e70f9 (patch) | |
tree | 07aaad2bac39829771772a2167f304ac690f7868 /xmlhelp | |
parent | 560e4fd02f8a4a3e26b3810b12d02a2d2e78593f (diff) |
fdo#62096 Corrected stupid error in previous patch
Change-Id: Ieb3ed1201918aaaac5b4ba64e6f767353497e697
Reviewed-on: https://gerrit.libreoffice.org/3545
Reviewed-by: Thomas Arnhold <thomas@arnhold.org>
Tested-by: Thomas Arnhold <thomas@arnhold.org>
Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org>
Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
Diffstat (limited to 'xmlhelp')
-rw-r--r-- | xmlhelp/source/cxxhelp/provider/db.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlhelp/source/cxxhelp/provider/db.hxx b/xmlhelp/source/cxxhelp/provider/db.hxx index d00fbaba4a50..79455916627d 100644 --- a/xmlhelp/source/cxxhelp/provider/db.hxx +++ b/xmlhelp/source/cxxhelp/provider/db.hxx @@ -68,7 +68,7 @@ namespace helpdatafileproxy { struct eq { bool operator()( const OString& rKey1, const OString& rKey2 ) const - { return rKey1.compareTo( rKey2 ) == 0; } + { return (rKey1 == rKey2); } }; struct ha |