summaryrefslogtreecommitdiff
path: root/svx/source/gallery2/gallery1.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-09-04 14:38:18 +0200
committerNoel Grandin <noel@peralex.com>2013-09-05 08:55:09 +0200
commit1287804a89c73e072d57a11ca18988c3e73a77b8 (patch)
treee284541074d88fd8669f4dca9693b10ddecc96db /svx/source/gallery2/gallery1.cxx
parentca713640ba61e456b73e285960b3105343373174 (diff)
convert svx/source/gallery/*.cxx from String to OUString
Change-Id: I35f1f83e806ebe1bd2c81d0a85ce2a4ef4704132
Diffstat (limited to 'svx/source/gallery2/gallery1.cxx')
-rw-r--r--svx/source/gallery2/gallery1.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/gallery2/gallery1.cxx b/svx/source/gallery2/gallery1.cxx
index b65a988fd784..40e638f35cc5 100644
--- a/svx/source/gallery2/gallery1.cxx
+++ b/svx/source/gallery2/gallery1.cxx
@@ -239,7 +239,7 @@ void Gallery::ImplLoadSubDirs( const INetURLObject& rBaseURL, sal_Bool& rbDirIsR
{
// check readonlyness the very hard way
INetURLObject aTestURL( rBaseURL );
- String aTestFile( RTL_CONSTASCII_USTRINGPARAM( "cdefghij.klm" ) );
+ OUString aTestFile( "cdefghij.klm" );
aTestURL.Append( aTestFile );
SvStream* pTestStm = ::utl::UcbStreamHelper::CreateStream( aTestURL.GetMainURL( INetURLObject::NO_DECODE ), STREAM_WRITE );
@@ -547,7 +547,7 @@ sal_Bool Gallery::RenameTheme( const OUString& rOldName, const OUString& rNewNam
if( pThm )
{
- const String aOldName( rOldName );
+ const OUString aOldName( rOldName );
pThemeEntry->SetName( rNewName );
pThm->ImplWrite();