diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2022-05-12 15:30:50 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2022-05-13 10:58:05 +0200 |
commit | 388bed014ad19a23fa9879bc31a8088f34157a48 (patch) | |
tree | 3c164fda6f7713371041c18c44bccade81697f20 /include/comphelper | |
parent | 3bd7111fe29ce19a007915af87f1f9269d27d9ff (diff) |
Remove need for two typedefs
Change-Id: I8e576f0b2b417ed78e6f38b745e51cbf8b666c68
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134262
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'include/comphelper')
-rw-r--r-- | include/comphelper/propagg.hxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/include/comphelper/propagg.hxx b/include/comphelper/propagg.hxx index 5be393be81e8..f7e47298b88b 100644 --- a/include/comphelper/propagg.hxx +++ b/include/comphelper/propagg.hxx @@ -58,9 +58,6 @@ namespace internal bool operator==(const OPropertyAccessor& rOb) const { return nPos == rOb.nPos; } bool operator <(const OPropertyAccessor& rOb) const { return nPos < rOb.nPos; } }; - - typedef std::map< sal_Int32, OPropertyAccessor > PropertyAccessorMap; - typedef PropertyAccessorMap::const_iterator ConstPropertyAccessorMapIterator; } @@ -93,7 +90,7 @@ class COMPHELPER_DLLPUBLIC OPropertyArrayAggregationHelper final : public ::cppu friend class OPropertySetAggregationHelper; std::vector<css::beans::Property> m_aProperties; - internal::PropertyAccessorMap m_aPropertyAccessors; + std::map< sal_Int32, internal::OPropertyAccessor > m_aPropertyAccessors; public: /** construct the object. |