diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-12-06 09:10:09 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-12-06 10:37:50 +0100 |
commit | 1a715d4d67ca398d59a8f7e8b41bdfeeabdd4b74 (patch) | |
tree | 3423b1e81559c30221113e1e194906f291fcb3d4 /extensions | |
parent | e68610de1c6b51527317112e0222a8a6d228fe26 (diff) |
Get rid of DECLARE_STL_STDKEY_MAP
Change-Id: I099f94922acba0bf9cde22fbbb3eefc230776868
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/dbpilots/dbptypes.hxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/extensions/source/dbpilots/dbptypes.hxx b/extensions/source/dbpilots/dbptypes.hxx index 4ac0eb28e810..407116975b41 100644 --- a/extensions/source/dbpilots/dbptypes.hxx +++ b/extensions/source/dbpilots/dbptypes.hxx @@ -22,11 +22,10 @@ #include <sal/config.h> +#include <map> #include <set> #include <vector> -#include <comphelper/stl_types.hxx> - //......................................................................... namespace dbp { @@ -34,7 +33,7 @@ namespace dbp typedef std::vector<OUString> StringArray; typedef std::set<OUString> StringBag; - DECLARE_STL_STDKEY_MAP( sal_uInt32, OUString, MapInt2String ); + typedef std::map<sal_uInt32, OUString> MapInt2String; //......................................................................... } // namespace dbp |