https://bugs.freedesktop.org/show_bug.cgi?id=83512

d.sikele...@gmail.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Assignee|libreoffice-b...@lists.free |d.sikele...@gmail.com
                   |desktop.org                 |

--- Comment #1 from d.sikele...@gmail.com ---
Most of the files are using OUStringHash or OStringHash now.

except for:
desktop/source/deployment/registry/dp_registry.cxx converts the string to lower
ASCII case before computing hash.
struct ci_string_hash {
   ::std::size_t operator () ( OUString const & str ) const {
       return str.toAsciiLowerCase().hashCode();
   }
};

ucb/source/ucp/file/shell.hxx doesn't work directly on strings.
struct hMyProperty
{
     size_t operator()( const MyProperty& rName ) const
     {
         return rName.getPropertyName().hashCode();
     }
};

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to