diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-12-05 22:41:15 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-12-06 08:04:22 +0100 |
commit | 4a8175ebeb58555e5d48df134cfaf128293888f1 (patch) | |
tree | 316963d1842bcf5ea16f489dc1c6d076fe9bb3c9 /forms | |
parent | 0b5e5783d8b15b0415c9fd5043932882904aece8 (diff) |
Get rid of DECLARE_STL_USTRINGACCESS_MAP
Change-Id: I00d02eaeff3eaa5f49550eb9c1d4e4e7e0b2203c
Diffstat (limited to 'forms')
-rw-r--r-- | forms/source/component/GroupManager.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/forms/source/component/GroupManager.hxx b/forms/source/component/GroupManager.hxx index 7747c41f6221..05f0936c2c69 100644 --- a/forms/source/component/GroupManager.hxx +++ b/forms/source/component/GroupManager.hxx @@ -31,6 +31,7 @@ #include <comphelper/types.hxx> #include <algorithm> +#include <map> using namespace comphelper; @@ -172,7 +173,7 @@ public: { return m_aCompArray[nP].GetComponent(); } }; -DECLARE_STL_USTRINGACCESS_MAP(OGroup, OGroupArr); +typedef std::map<OUString, OGroup> OGroupArr; DECLARE_STL_VECTOR(OGroupArr::iterator, OActiveGroups); //======================================================================== |