summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-12-05 18:34:54 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-12-05 18:36:22 +0100
commit895e6e7bb7abddb135f6fe3cfef1505261d4cbc6 (patch)
tree07e906292f1e9ecc47b49603a920ddc28c41d91c /sw
parent0c55303581156d01992d9d958ac5f7aafc4a3ebb (diff)
Get rid of comphelper::UStringLess
...default std::less<OUString> is just fine. Change-Id: Ib9d3c10f2817d757f3c19eb3d4607095883af91a
Diffstat (limited to 'sw')
-rw-r--r--sw/source/filter/xml/xmltexti.cxx6
-rw-r--r--sw/source/filter/xml/xmltexti.hxx2
2 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/filter/xml/xmltexti.cxx b/sw/source/filter/xml/xmltexti.cxx
index fb968ac74155..221ad67a70bd 100644
--- a/sw/source/filter/xml/xmltexti.cxx
+++ b/sw/source/filter/xml/xmltexti.cxx
@@ -895,7 +895,7 @@ uno::Reference< XPropertySet > SwXMLTextImportHelper::createAndInsertFloatingFra
void SwXMLTextImportHelper::endAppletOrPlugin(
const uno::Reference < XPropertySet > &rPropSet,
- ::std::map < const OUString, OUString, ::comphelper::UStringLess > &rParamMap)
+ ::std::map < const OUString, OUString > &rParamMap)
{
// this method will modify the document directly -> lock SolarMutex
SolarMutexGuard aGuard;
@@ -920,8 +920,8 @@ void SwXMLTextImportHelper::endAppletOrPlugin(
const sal_Int32 nCount = rParamMap.size();
uno::Sequence< beans::PropertyValue > aCommandSequence( nCount );
- ::std::map < const OUString, OUString, ::comphelper::UStringLess > ::iterator aIter = rParamMap.begin();
- ::std::map < const OUString, OUString, ::comphelper::UStringLess > ::iterator aEnd = rParamMap.end();
+ ::std::map < const OUString, OUString > ::iterator aIter = rParamMap.begin();
+ ::std::map < const OUString, OUString > ::iterator aEnd = rParamMap.end();
sal_Int32 nIndex=0;
while (aIter != aEnd )
{
diff --git a/sw/source/filter/xml/xmltexti.hxx b/sw/source/filter/xml/xmltexti.hxx
index 2c31210d13a9..4210cc1e6c87 100644
--- a/sw/source/filter/xml/xmltexti.hxx
+++ b/sw/source/filter/xml/xmltexti.hxx
@@ -87,7 +87,7 @@ public:
virtual void endAppletOrPlugin(
const ::com::sun::star::uno::Reference < ::com::sun::star::beans::XPropertySet > &rPropSet,
- ::std::map < const OUString, OUString, ::comphelper::UStringLess> &rParamMap);
+ ::std::map < const OUString, OUString > &rParamMap);
virtual sal_Bool IsInHeaderFooter() const;