diff options
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/property/genericpropertyset.cxx | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/comphelper/source/property/genericpropertyset.cxx b/comphelper/source/property/genericpropertyset.cxx index 4d9f7a68cff1..754b08df0ffc 100644 --- a/comphelper/source/property/genericpropertyset.cxx +++ b/comphelper/source/property/genericpropertyset.cxx @@ -40,14 +40,12 @@ using namespace ::com::sun::star::uno; using namespace ::com::sun::star::beans; using namespace ::com::sun::star::lang; -typedef std::map<OUString, Any> GenericAnyMapImpl; - namespace comphelper { struct IMPL_GenericPropertySet_MutexContainer { - Mutex maMutex ; - } ; + Mutex maMutex; + }; class GenericPropertySet : public OWeakAggObject, public XServiceInfo, @@ -56,7 +54,7 @@ namespace comphelper private IMPL_GenericPropertySet_MutexContainer { private: - GenericAnyMapImpl maAnyMap; + std::map<OUString, Any> maAnyMap; cppu::OMultiTypeInterfaceContainerHelperVar<OUString> m_aListener; protected: |