[Libreoffice-commits] core.git: xmlhelp/source

Sameer Deshmukh sameer.deshmukh93 at gmail.com
Mon Apr 22 00:29:39 PDT 2013


 xmlhelp/source/cxxhelp/provider/db.hxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit ca54015d7ea10f5648bccb2adfb7a321747e70f9
Author: Sameer Deshmukh <sameer.deshmukh93 at gmail.com>
Date:   Mon Apr 22 00:43:56 2013 +0530

    fdo#62096 Corrected stupid error in previous patch
    
    Change-Id: Ieb3ed1201918aaaac5b4ba64e6f767353497e697
    Reviewed-on: https://gerrit.libreoffice.org/3545
    Reviewed-by: Thomas Arnhold <thomas at arnhold.org>
    Tested-by: Thomas Arnhold <thomas at arnhold.org>
    Reviewed-by: Fridrich Strba <fridrich at documentfoundation.org>
    Tested-by: Fridrich Strba <fridrich at documentfoundation.org>

diff --git a/xmlhelp/source/cxxhelp/provider/db.hxx b/xmlhelp/source/cxxhelp/provider/db.hxx
index d00fbab..7945591 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


More information about the Libreoffice-commits mailing list