diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-07 18:14:32 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-07 18:14:53 +0200 |
commit | f57c9921de4d64fbe27e80e2e7c13dea23853089 (patch) | |
tree | a5740ad9b06c76097459cb50d6b8a374b002e74f /framework/inc/uiconfiguration | |
parent | d56deaeb2a1e8007e50fc2334f416fddd4e3cde3 (diff) |
Get rid of BaseHash wrapper (to unbreak Windows build)
Change-Id: Ieae7d6af7a4753958ebf2aeae9d2ae6fafe5efe9
Diffstat (limited to 'framework/inc/uiconfiguration')
-rw-r--r-- | framework/inc/uiconfiguration/graphicnameaccess.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/inc/uiconfiguration/graphicnameaccess.hxx b/framework/inc/uiconfiguration/graphicnameaccess.hxx index b299b8493015..b18ab5c7d3bc 100644 --- a/framework/inc/uiconfiguration/graphicnameaccess.hxx +++ b/framework/inc/uiconfiguration/graphicnameaccess.hxx @@ -52,7 +52,7 @@ namespace framework throw(css::uno::RuntimeException, std::exception) override; private: - typedef BaseHash< css::uno::Reference< css::graphic::XGraphic > > NameGraphicHashMap; + typedef std::unordered_map<OUString, css::uno::Reference< css::graphic::XGraphic >, OUStringHash> NameGraphicHashMap; NameGraphicHashMap m_aNameToElementMap; css::uno::Sequence< OUString > m_aSeq; }; |