xmlhelp/source/cxxhelp/provider/db.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit ca54015d7ea10f5648bccb2adfb7a321747e70f9 Author: Sameer Deshmukh <[email protected]> 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 <[email protected]> Tested-by: Thomas Arnhold <[email protected]> Reviewed-by: Fridrich Strba <[email protected]> Tested-by: Fridrich Strba <[email protected]> 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 [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
