summaryrefslogtreecommitdiff
path: root/xmloff/source/text/XMLPropertyBackpatcher.cxx
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-04-07 12:06:47 +0200
committerLuboš Luňák <l.lunak@suse.cz>2013-04-07 14:23:11 +0200
commit1946794ae09ba732022fe6a74ea45e304ab70b84 (patch)
treee32bd7ba61fa021ecc7f8c85959df8ca837d6e81 /xmloff/source/text/XMLPropertyBackpatcher.cxx
parent5b08c6e7a21dda94d5b755eea0b1ed1e9c199bec (diff)
mass removal of rtl:: prefixes for O(U)String*
Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk have kept them, in order not to break external API (the automatic using declaration is LO-internal). Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09
Diffstat (limited to 'xmloff/source/text/XMLPropertyBackpatcher.cxx')
-rw-r--r--xmloff/source/text/XMLPropertyBackpatcher.cxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/xmloff/source/text/XMLPropertyBackpatcher.cxx b/xmloff/source/text/XMLPropertyBackpatcher.cxx
index de91fc51df28..7807dc73b82e 100644
--- a/xmloff/source/text/XMLPropertyBackpatcher.cxx
+++ b/xmloff/source/text/XMLPropertyBackpatcher.cxx
@@ -26,7 +26,6 @@
#include <xmloff/txtimp.hxx> // XMLTextImportHelper partially implemented here
-using ::rtl::OUString;
using ::std::vector;
using ::std::map;
using ::com::sun::star::uno::Reference;
@@ -36,7 +35,7 @@ using ::com::sun::star::beans::XPropertySet;
template<class A>
XMLPropertyBackpatcher<A>::XMLPropertyBackpatcher(
- const ::rtl::OUString& sPropName)
+ const OUString& sPropName)
: sPropertyName(sPropName)
, bDefaultHandling(sal_False)
, bPreserveProperty(sal_False)
@@ -164,7 +163,7 @@ struct SAL_DLLPRIVATE XMLTextImportHelper::BackpatcherImpl
::std::auto_ptr< XMLPropertyBackpatcher<sal_Int16> >
m_pSequenceIdBackpatcher;
- ::std::auto_ptr< XMLPropertyBackpatcher< ::rtl::OUString> >
+ ::std::auto_ptr< XMLPropertyBackpatcher< OUString> >
m_pSequenceNameBackpatcher;
SAL_WNODEPRECATED_DECLARATIONS_POP
};
@@ -176,9 +175,9 @@ XMLTextImportHelper::MakeBackpatcherImpl()
return ::boost::shared_ptr<BackpatcherImpl>(new BackpatcherImpl);
}
-static ::rtl::OUString const& GetSequenceNumber()
+static OUString const& GetSequenceNumber()
{
- static ::rtl::OUString s_SequenceNumber("SequenceNumber");
+ static OUString s_SequenceNumber("SequenceNumber");
return s_SequenceNumber;
}