summaryrefslogtreecommitdiff
path: root/include/vcl
diff options
context:
space:
mode:
Diffstat (limited to 'include/vcl')
-rw-r--r--include/vcl/configsettings.hxx4
-rw-r--r--include/vcl/ppdparser.hxx4
-rw-r--r--include/vcl/print.hxx2
3 files changed, 5 insertions, 5 deletions
diff --git a/include/vcl/configsettings.hxx b/include/vcl/configsettings.hxx
index 39824188b9b9..50bba28396a0 100644
--- a/include/vcl/configsettings.hxx
+++ b/include/vcl/configsettings.hxx
@@ -28,7 +28,7 @@
namespace vcl
{
- typedef std::unordered_map< OUString, OUString, OUStringHash > OUStrMap;
+ typedef std::unordered_map< OUString, OUString > OUStrMap;
class SmallOUStrMap : public OUStrMap { public: SmallOUStrMap() : OUStrMap(1) {} };
@@ -37,7 +37,7 @@ namespace vcl
class VCL_DLLPUBLIC SettingsConfigItem : public ::utl::ConfigItem
{
private:
- std::unordered_map< OUString, SmallOUStrMap, OUStringHash > m_aSettings;
+ std::unordered_map< OUString, SmallOUStrMap > m_aSettings;
virtual void Notify( const css::uno::Sequence< OUString >& rPropertyNames ) override;
diff --git a/include/vcl/ppdparser.hxx b/include/vcl/ppdparser.hxx
index 227c617961d2..a3a04b86fdff 100644
--- a/include/vcl/ppdparser.hxx
+++ b/include/vcl/ppdparser.hxx
@@ -61,7 +61,7 @@ class VCL_DLLPUBLIC PPDKey
friend class PPDParser;
friend class CPDManager;
- typedef std::unordered_map< OUString, PPDValue, OUStringHash > hash_type;
+ typedef std::unordered_map< OUString, PPDValue > hash_type;
typedef std::vector< PPDValue* > value_type;
OUString m_aKey;
@@ -123,7 +123,7 @@ class VCL_DLLPUBLIC PPDParser
friend class CPDManager;
friend class PPDCache;
- typedef std::unordered_map< OUString, PPDKey*, OUStringHash > hash_type;
+ typedef std::unordered_map< OUString, PPDKey* > hash_type;
typedef std::vector< PPDKey* > value_type;
void insertKey( const OUString& rKey, PPDKey* pKey );
diff --git a/include/vcl/print.hxx b/include/vcl/print.hxx
index 94e5b9dd6ba0..e25eaa5dd044 100644
--- a/include/vcl/print.hxx
+++ b/include/vcl/print.hxx
@@ -566,7 +566,7 @@ public:
class VCL_DLLPUBLIC PrinterOptionsHelper
{
protected:
- std::unordered_map< OUString, css::uno::Any, OUStringHash >
+ std::unordered_map< OUString, css::uno::Any >
m_aPropertyMap;
std::vector< css::beans::PropertyValue >
m_aUIProperties;