summaryrefslogtreecommitdiff
path: root/connectivity/source/drivers
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 /connectivity/source/drivers
parent0b5e5783d8b15b0415c9fd5043932882904aece8 (diff)
Get rid of DECLARE_STL_USTRINGACCESS_MAP
Change-Id: I00d02eaeff3eaa5f49550eb9c1d4e4e7e0b2203c
Diffstat (limited to 'connectivity/source/drivers')
-rw-r--r--connectivity/source/drivers/hsqldb/accesslog.cxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/connectivity/source/drivers/hsqldb/accesslog.cxx b/connectivity/source/drivers/hsqldb/accesslog.cxx
index 7c3aeef597c9..18b7d05d749f 100644
--- a/connectivity/source/drivers/hsqldb/accesslog.cxx
+++ b/connectivity/source/drivers/hsqldb/accesslog.cxx
@@ -17,8 +17,12 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
+#include <sal/config.h>
#ifdef HSQLDB_DBG
+
+#include <map>
+
#include "accesslog.hxx"
#include "hsqldb/HStorageMap.hxx"
@@ -26,7 +30,7 @@
namespace connectivity { namespace hsqldb
{
- DECLARE_STL_USTRINGACCESS_MAP(FILE *,TDebugStreamMap);
+ typedef std::map<OUString, FILE *> TDebugStreamMap;
TDebugStreamMap& getStreams()
{
static TDebugStreamMap streams;