Kaydet (Commit) ca54015d authored tarafından Sameer Deshmukh's avatar Sameer Deshmukh Kaydeden (comit) Fridrich Strba

fdo#62096 Corrected stupid error in previous patch

Change-Id: Ieb3ed1201918aaaac5b4ba64e6f767353497e697
Reviewed-on: https://gerrit.libreoffice.org/3545Reviewed-by: 's avatarThomas Arnhold <thomas@arnhold.org>
Tested-by: 's avatarThomas Arnhold <thomas@arnhold.org>
Reviewed-by: 's avatarFridrich Strba <fridrich@documentfoundation.org>
Tested-by: 's avatarFridrich Strba <fridrich@documentfoundation.org>
üst 560e4fd0
...@@ -68,7 +68,7 @@ namespace helpdatafileproxy { ...@@ -68,7 +68,7 @@ namespace helpdatafileproxy {
struct eq struct eq
{ {
bool operator()( const OString& rKey1, const OString& rKey2 ) const bool operator()( const OString& rKey1, const OString& rKey2 ) const
{ return rKey1.compareTo( rKey2 ) == 0; } { return (rKey1 == rKey2); }
}; };
struct ha struct ha
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment