summaryrefslogtreecommitdiff
path: root/svx/source/xml/xmlxtexp.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 /svx/source/xml/xmlxtexp.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 'svx/source/xml/xmlxtexp.cxx')
-rw-r--r--svx/source/xml/xmlxtexp.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/svx/source/xml/xmlxtexp.cxx b/svx/source/xml/xmlxtexp.cxx
index afac2c05ea1f..9cb97d9fafba 100644
--- a/svx/source/xml/xmlxtexp.cxx
+++ b/svx/source/xml/xmlxtexp.cxx
@@ -180,12 +180,12 @@ static void initializeStreamMetadata( const uno::Reference< uno::XInterface > &x
try
{
xProps->setPropertyValue(
- rtl::OUString( "MediaType" ),
- uno::makeAny( rtl::OUString( "text/xml" ) ) );
+ OUString( "MediaType" ),
+ uno::makeAny( OUString( "text/xml" ) ) );
// use stock encryption
xProps->setPropertyValue(
- rtl::OUString( "UseCommonStoragePasswordEncryption" ),
+ OUString( "UseCommonStoragePasswordEncryption" ),
uno::makeAny( sal_True ) );
} catch ( const uno::Exception & )
{
@@ -199,7 +199,7 @@ static void createStorageStream( uno::Reference < io::XOutputStream > *xOut,
{
uno::Reference < io::XStream > xStream;
xStream = xSubStorage->openStreamElement(
- rtl::OUString( "Content.xml" ),
+ OUString( "Content.xml" ),
embed::ElementModes::WRITE );
*ppGraphicHelper = SvXMLGraphicHelper::Create( xSubStorage, GRAPHICHELPER_MODE_WRITE );
initializeStreamMetadata( xStream );
@@ -210,7 +210,7 @@ bool SvxXMLXTableExportComponent::save(
const OUString& rURL,
const uno::Reference<container::XNameContainer >& xTable,
const uno::Reference<embed::XStorage >& xStorage,
- rtl::OUString *pOptName ) throw()
+ OUString *pOptName ) throw()
{
bool bRet = false;
SfxMedium* pMedium = NULL;
@@ -259,7 +259,7 @@ bool SvxXMLXTableExportComponent::save(
}
else // save into the xSubStorage
{
- rtl::OUString aPath = rURL;
+ OUString aPath = rURL;
if( bSaveAsStorage )
{
@@ -272,7 +272,7 @@ bool SvxXMLXTableExportComponent::save(
}
else
{
- aPath += rtl::OUString( ".xml" );
+ aPath += OUString( ".xml" );
try {
xStream = xStorage->openStreamElement( aPath, eCreate );
if( !xStream.is() )