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

New commits:
commit ca54015d7ea10f5648bccb2adfb7a321747e70f9
Author: Sameer Deshmukh <sameer.deshmuk...@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 <tho...@arnhold.org>
    Tested-by: Thomas Arnhold <tho...@arnhold.org>
    Reviewed-by: Fridrich Strba <fridr...@documentfoundation.org>
    Tested-by: Fridrich Strba <fridr...@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
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to