summaryrefslogtreecommitdiff
path: root/oox/source/mathml
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 /oox/source/mathml
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 'oox/source/mathml')
-rw-r--r--oox/source/mathml/importutils.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/oox/source/mathml/importutils.cxx b/oox/source/mathml/importutils.cxx
index 6d44cf07f000..2b51604fb467 100644
--- a/oox/source/mathml/importutils.cxx
+++ b/oox/source/mathml/importutils.cxx
@@ -114,7 +114,7 @@ OUString& XmlStream::AttributeList::operator[] (int token)
return attrs[token];
}
-rtl::OUString XmlStream::AttributeList::attribute( int token, const rtl::OUString& def ) const
+OUString XmlStream::AttributeList::attribute( int token, const OUString& def ) const
{
std::map< int, OUString >::const_iterator find = attrs.find( token );
if( find != attrs.end())
@@ -158,7 +158,7 @@ sal_Unicode XmlStream::AttributeList::attribute( int token, sal_Unicode def ) co
return def;
}
-XmlStream::Tag::Tag( int t, const uno::Reference< xml::sax::XFastAttributeList >& a, const rtl::OUString& txt )
+XmlStream::Tag::Tag( int t, const uno::Reference< xml::sax::XFastAttributeList >& a, const OUString& txt )
: token( t )
, attributes( AttributeListBuilder( a ))
, text( txt )
@@ -353,7 +353,7 @@ void XmlStreamBuilder::appendClosingTag( int token )
tags.push_back( Tag( CLOSING( token )));
}
-void XmlStreamBuilder::appendCharacters( const rtl::OUString& chars )
+void XmlStreamBuilder::appendCharacters( const OUString& chars )
{
assert( !tags.empty());
tags.back().text += chars;