summaryrefslogtreecommitdiff
path: root/dbaccess/source/core/recovery/storagetextstream.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 /dbaccess/source/core/recovery/storagetextstream.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 'dbaccess/source/core/recovery/storagetextstream.cxx')
-rw-r--r--dbaccess/source/core/recovery/storagetextstream.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/dbaccess/source/core/recovery/storagetextstream.cxx b/dbaccess/source/core/recovery/storagetextstream.cxx
index fcce399dd92a..241e336f2652 100644
--- a/dbaccess/source/core/recovery/storagetextstream.cxx
+++ b/dbaccess/source/core/recovery/storagetextstream.cxx
@@ -67,9 +67,9 @@ namespace dbaccess
}
//--------------------------------------------------------------------------------------------------------------
- static const ::rtl::OUString& lcl_getLineFeed()
+ static const OUString& lcl_getLineFeed()
{
- static const ::rtl::OUString s_sLineFeed( sal_Unicode( '\n' ) );
+ static const OUString s_sLineFeed( sal_Unicode( '\n' ) );
return s_sLineFeed;
}
}
@@ -80,7 +80,7 @@ namespace dbaccess
//------------------------------------------------------------------------------------------------------------------
StorageTextOutputStream::StorageTextOutputStream( const Reference<XComponentContext>& i_rContext,
const Reference< XStorage >& i_rParentStorage,
- const ::rtl::OUString& i_rStreamName
+ const OUString& i_rStreamName
)
:StorageOutputStream( i_rContext, i_rParentStorage, i_rStreamName )
,m_pData( new StorageTextOutputStream_Data )
@@ -96,7 +96,7 @@ namespace dbaccess
}
//------------------------------------------------------------------------------------------------------------------
- void StorageTextOutputStream::writeLine( const ::rtl::OUString& i_rLine )
+ void StorageTextOutputStream::writeLine( const OUString& i_rLine )
{
m_pData->xTextOutput->writeString( i_rLine );
m_pData->xTextOutput->writeString( lcl_getLineFeed() );