summaryrefslogtreecommitdiffstats
path: root/include/connectivity/DriversConfig.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-12-05 22:41:15 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-12-06 08:04:22 +0100
commit4a8175ebeb58555e5d48df134cfaf128293888f1 (patch)
tree316963d1842bcf5ea16f489dc1c6d076fe9bb3c9 /include/connectivity/DriversConfig.hxx
parentA bit of constness. (diff)
downloadcore-4a8175ebeb58555e5d48df134cfaf128293888f1.tar.gz
core-4a8175ebeb58555e5d48df134cfaf128293888f1.zip
Get rid of DECLARE_STL_USTRINGACCESS_MAP
Change-Id: I00d02eaeff3eaa5f49550eb9c1d4e4e7e0b2203c
Diffstat (limited to 'include/connectivity/DriversConfig.hxx')
-rw-r--r--include/connectivity/DriversConfig.hxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/connectivity/DriversConfig.hxx b/include/connectivity/DriversConfig.hxx
index c976de9f6602..b2f2c7631e57 100644
--- a/include/connectivity/DriversConfig.hxx
+++ b/include/connectivity/DriversConfig.hxx
@@ -19,7 +19,10 @@
#ifndef INCLUDED_CONNECTIVITY_DRIVERSCONFIG_HXX
#define INCLUDED_CONNECTIVITY_DRIVERSCONFIG_HXX
-#include <comphelper/stl_types.hxx>
+#include <sal/config.h>
+
+#include <map>
+
#include <com/sun/star/beans/NamedValue.hpp>
#include <com/sun/star/uno/Sequence.h>
#include <connectivity/dbtoolsdllapi.hxx>
@@ -37,7 +40,7 @@ namespace connectivity
OUString sDriverFactory;
OUString sDriverTypeDisplayName;
} TInstalledDriver;
- DECLARE_STL_USTRINGACCESS_MAP( TInstalledDriver, TInstalledDrivers);
+ typedef std::map<OUString, TInstalledDriver> TInstalledDrivers;
class DriversConfigImpl
{