summaryrefslogtreecommitdiffstats
path: root/sax/inc/xml2utf.hxx
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 /sax/inc/xml2utf.hxx
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 'sax/inc/xml2utf.hxx')
-rw-r--r--sax/inc/xml2utf.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sax/inc/xml2utf.hxx b/sax/inc/xml2utf.hxx
index 9a6ee23e6ca3..bb1f6aca2dee 100644
--- a/sax/inc/xml2utf.hxx
+++ b/sax/inc/xml2utf.hxx
@@ -25,7 +25,7 @@ class Text2UnicodeConverter
{
public:
- Text2UnicodeConverter( const ::rtl::OString & sEncoding );
+ Text2UnicodeConverter( const OString & sEncoding );
~Text2UnicodeConverter();
::com::sun::star::uno::Sequence < sal_Unicode > convert( const ::com::sun::star::uno::Sequence<sal_Int8> & );
@@ -53,7 +53,7 @@ public:
Unicode2TextConverter( rtl_TextEncoding encoding );
~Unicode2TextConverter();
- inline ::com::sun::star::uno::Sequence<sal_Int8> convert( const ::rtl::OUString &s )
+ inline ::com::sun::star::uno::Sequence<sal_Int8> convert( const OUString &s )
{
return convert( s.getStr() , s.getLength() );
}
@@ -90,7 +90,7 @@ public:
~XMLFile2UTFConverter();
void setInputStream( ::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream > &r ) { m_in = r; }
- void setEncoding( const ::rtl::OString &s ) { m_sEncoding = s; }
+ void setEncoding( const OString &s ) { m_sEncoding = s; }
@@ -124,7 +124,7 @@ private:
::com::sun::star::uno::Reference< ::com::sun::star::io::XInputStream > m_in;
sal_Bool m_bStarted;
- ::rtl::OString m_sEncoding;
+ OString m_sEncoding;
Text2UnicodeConverter *m_pText2Unicode;
Unicode2TextConverter *m_pUnicode2Text;