summaryrefslogtreecommitdiff
path: root/sc/source/filter/excel/xeextlst.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/excel/xeextlst.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 'sc/source/filter/excel/xeextlst.cxx')
-rw-r--r--sc/source/filter/excel/xeextlst.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sc/source/filter/excel/xeextlst.cxx b/sc/source/filter/excel/xeextlst.cxx
index c4ba7df17a18..58594fe01a13 100644
--- a/sc/source/filter/excel/xeextlst.cxx
+++ b/sc/source/filter/excel/xeextlst.cxx
@@ -59,16 +59,16 @@ XclExpExtCfvo::XclExpExtCfvo( const XclExpRoot& rRoot, const ScColorScaleEntry&
if( rEntry.GetType() == COLORSCALE_FORMULA )
{
const ScTokenArray* pArr = rEntry.GetFormula();
- rtl::OUString aFormula;
+ OUString aFormula;
if(pArr)
{
aFormula = XclXmlUtils::ToOUString( GetRoot().GetDoc(), rSrcPos,
pArr->Clone(), GetRoot().GetOpCodeMap() );
}
- maValue = rtl::OUStringToOString(aFormula, RTL_TEXTENCODING_UTF8 );
+ maValue = OUStringToOString(aFormula, RTL_TEXTENCODING_UTF8 );
}
else
- maValue = rtl::OString::valueOf(rEntry.GetValue());
+ maValue = OString::valueOf(rEntry.GetValue());
}
namespace {
@@ -159,7 +159,7 @@ void XclExpExtDataBar::SaveXml( XclExpXmlStream& rStrm )
rWorksheet->endElementNS( XML_x14, XML_dataBar );
}
-XclExpExtCfRule::XclExpExtCfRule( const XclExpRoot& rRoot, const ScDataBarFormat& rFormat, const ScAddress& rPos, const rtl::OString& rId ):
+XclExpExtCfRule::XclExpExtCfRule( const XclExpRoot& rRoot, const ScDataBarFormat& rFormat, const ScAddress& rPos, const OString& rId ):
XclExpRoot(rRoot),
maId(rId)
{
@@ -180,7 +180,7 @@ void XclExpExtCfRule::SaveXml( XclExpXmlStream& rStrm )
}
-XclExpExtConditionalFormatting::XclExpExtConditionalFormatting( const XclExpRoot& rRoot, const ScDataBarFormat& rFormat, const ScAddress& rPos, const rtl::OString& rId ):
+XclExpExtConditionalFormatting::XclExpExtConditionalFormatting( const XclExpRoot& rRoot, const ScDataBarFormat& rFormat, const ScAddress& rPos, const OString& rId ):
XclExpRoot(rRoot)
{
maCfRule.reset( new XclExpExtCfRule( *this, rFormat, rPos, rId ) );
@@ -206,7 +206,7 @@ void XclExpExtConditionalFormatting::SaveXml( XclExpXmlStream& rStrm )
XclExpExtCondFormat::XclExpExtCondFormat( const XclExpRoot& rRoot ):
XclExpExt( rRoot )
{
- maURI = rtl::OString("{78C0D931-6437-407d-A8EE-F0AAD7539E65}");
+ maURI = OString("{78C0D931-6437-407d-A8EE-F0AAD7539E65}");
}
void XclExpExtCondFormat::SaveXml( XclExpXmlStream& rStrm )