summaryrefslogtreecommitdiff
path: root/svtools/source/dialogs
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 /svtools/source/dialogs
parent0b5e5783d8b15b0415c9fd5043932882904aece8 (diff)
Get rid of DECLARE_STL_USTRINGACCESS_MAP
Change-Id: I00d02eaeff3eaa5f49550eb9c1d4e4e7e0b2203c
Diffstat (limited to 'svtools/source/dialogs')
-rw-r--r--svtools/source/dialogs/addresstemplate.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/svtools/source/dialogs/addresstemplate.cxx b/svtools/source/dialogs/addresstemplate.cxx
index fc4a4810f463..bcf1eb455c8f 100644
--- a/svtools/source/dialogs/addresstemplate.cxx
+++ b/svtools/source/dialogs/addresstemplate.cxx
@@ -28,7 +28,6 @@
#include <comphelper/extract.hxx>
#include <comphelper/interaction.hxx>
#include <comphelper/processfactory.hxx>
-#include <comphelper/stl_types.hxx>
#include <comphelper/string.hxx>
#include <vcl/stdtext.hxx>
#include <vcl/waitobj.hxx>
@@ -51,6 +50,7 @@
#include "svl/filenotation.hxx"
#include <tools/urlobj.hxx>
#include <algorithm>
+#include <map>
// .......................................................................
namespace svt
@@ -72,7 +72,7 @@ namespace svt
typedef std::vector<OUString> StringArray;
typedef std::set<OUString> StringBag;
- DECLARE_STL_USTRINGACCESS_MAP( OUString, MapString2String );
+ typedef std::map<OUString, OUString> MapString2String;
namespace
{
@@ -224,7 +224,7 @@ public:
// -------------------------------------------------------------------
sal_Bool AssigmentTransientData::hasFieldAssignment(const OUString& _rLogicalName)
{
- ConstMapString2StringIterator aPos = m_aAliases.find( _rLogicalName );
+ MapString2String::const_iterator aPos = m_aAliases.find( _rLogicalName );
return ( m_aAliases.end() != aPos )
&& ( !aPos->second.isEmpty() );
}
@@ -233,7 +233,7 @@ public:
OUString AssigmentTransientData::getFieldAssignment(const OUString& _rLogicalName)
{
OUString sReturn;
- ConstMapString2StringIterator aPos = m_aAliases.find( _rLogicalName );
+ MapString2String::const_iterator aPos = m_aAliases.find( _rLogicalName );
if ( m_aAliases.end() != aPos )
sReturn = aPos->second;
@@ -249,7 +249,7 @@ public:
// -------------------------------------------------------------------
void AssigmentTransientData::clearFieldAssignment(const OUString& _rLogicalName)
{
- MapString2StringIterator aPos = m_aAliases.find( _rLogicalName );
+ MapString2String::iterator aPos = m_aAliases.find( _rLogicalName );
if ( m_aAliases.end() != aPos )
m_aAliases.erase( aPos );
}