summaryrefslogtreecommitdiffstats
path: root/sc/source/filter/xml/xmlconti.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 /sc/source/filter/xml/xmlconti.cxx
parentTypo in comment in resmgr.hxx (diff)
downloadcore-1946794ae09ba732022fe6a74ea45e304ab70b84.tar.gz
core-1946794ae09ba732022fe6a74ea45e304ab70b84.zip
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 'sc/source/filter/xml/xmlconti.cxx')
-rw-r--r--sc/source/filter/xml/xmlconti.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/sc/source/filter/xml/xmlconti.cxx b/sc/source/filter/xml/xmlconti.cxx
index 4decd390cb3c..29b91dca5b2f 100644
--- a/sc/source/filter/xml/xmlconti.cxx
+++ b/sc/source/filter/xml/xmlconti.cxx
@@ -33,10 +33,10 @@ using namespace xmloff::token;
ScXMLContentContext::ScXMLContentContext( ScXMLImport& rImport,
sal_uInt16 nPrfx,
- const ::rtl::OUString& rLName,
+ const OUString& rLName,
const ::com::sun::star::uno::Reference<
::com::sun::star::xml::sax::XAttributeList>& /* xAttrList */,
- rtl::OUStringBuffer& sTempValue) :
+ OUStringBuffer& sTempValue) :
SvXMLImportContext( rImport, nPrfx, rLName ),
sOUText(),
sValue(sTempValue)
@@ -48,7 +48,7 @@ ScXMLContentContext::~ScXMLContentContext()
}
SvXMLImportContext *ScXMLContentContext::CreateChildContext( sal_uInt16 nPrefix,
- const ::rtl::OUString& rLName,
+ const OUString& rLName,
const ::com::sun::star::uno::Reference<
::com::sun::star::xml::sax::XAttributeList>& xAttrList )
{
@@ -60,9 +60,9 @@ SvXMLImportContext *ScXMLContentContext::CreateChildContext( sal_uInt16 nPrefix,
sal_Int16 nAttrCount = xAttrList.is() ? xAttrList->getLength() : 0;
for( sal_Int16 i=0; i < nAttrCount; ++i )
{
- const rtl::OUString& sAttrName(xAttrList->getNameByIndex( i ));
- const rtl::OUString& sAttrValue(xAttrList->getValueByIndex( i ));
- rtl::OUString aLocalName;
+ const OUString& sAttrName(xAttrList->getNameByIndex( i ));
+ const OUString& sAttrValue(xAttrList->getValueByIndex( i ));
+ OUString aLocalName;
sal_uInt16 nPrfx = GetScImport().GetNamespaceMap().GetKeyByAttrName(
sAttrName, &aLocalName );
if ((nPrfx == XML_NAMESPACE_TEXT) && IsXMLToken(aLocalName, XML_C))
@@ -81,7 +81,7 @@ SvXMLImportContext *ScXMLContentContext::CreateChildContext( sal_uInt16 nPrefix,
return pContext;
}
-void ScXMLContentContext::Characters( const ::rtl::OUString& rChars )
+void ScXMLContentContext::Characters( const OUString& rChars )
{
sOUText.append(rChars);
}