summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc/impex.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 /sc/source/ui/inc/impex.hxx
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/ui/inc/impex.hxx')
-rw-r--r--sc/source/ui/inc/impex.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/source/ui/inc/impex.hxx b/sc/source/ui/inc/impex.hxx
index 8c7e36b26dbe..2691b118bbf7 100644
--- a/sc/source/ui/inc/impex.hxx
+++ b/sc/source/ui/inc/impex.hxx
@@ -129,9 +129,9 @@ public:
void SetStreamPath( const String& rPath ) { aStreamPath = rPath; }
const String& GetStreamPath() const { return aStreamPath; }
- bool ImportString( const ::rtl::OUString&, sal_uLong=FORMAT_STRING );
- bool ExportString( ::rtl::OUString&, sal_uLong=FORMAT_STRING );
- bool ExportByteString( ::rtl::OString&, rtl_TextEncoding, sal_uLong=FORMAT_STRING );
+ bool ImportString( const OUString&, sal_uLong=FORMAT_STRING );
+ bool ExportString( OUString&, sal_uLong=FORMAT_STRING );
+ bool ExportByteString( OString&, rtl_TextEncoding, sal_uLong=FORMAT_STRING );
bool ImportStream( SvStream&, const String& rBaseURL, sal_uLong=FORMAT_STRING );
bool ExportStream( SvStream&, const String& rBaseURL, sal_uLong=FORMAT_STRING );
@@ -179,7 +179,7 @@ inline void ScImportExport::SetNoEndianSwap( SvStream& rStrm )
class ScImportStringStream : public SvMemoryStream
{
public:
- ScImportStringStream( const ::rtl::OUString rStr )
+ ScImportStringStream( const OUString rStr )
: SvMemoryStream( (void*)rStr.getStr(),
rStr.getLength() * sizeof(sal_Unicode), STREAM_READ)
{
@@ -233,7 +233,7 @@ public:
may start under false preconditions.
*/
-SC_DLLPUBLIC rtl::OUString ReadCsvLine( SvStream &rStream, bool bEmbeddedLineBreak,
+SC_DLLPUBLIC OUString ReadCsvLine( SvStream &rStream, bool bEmbeddedLineBreak,
const String& rFieldSeparators, sal_Unicode cFieldQuote );
#endif