From 6a08067902ddc0ec61a7c7b4b0035b303f643a50 Mon Sep 17 00:00:00 2001 From: Norbert Thiebaud Date: Mon, 1 Jul 2013 10:33:48 -0500 Subject: OUString convertion for unotools Change-Id: Ifae7f344e3827875e32afa3cda23c771f5735707 Reviewed-on: https://gerrit.libreoffice.org/4659 Tested-by: LibreOffice gerrit bot Reviewed-by: Fridrich Strba Tested-by: Fridrich Strba --- sot/source/sdstor/ucbstorage.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sot') diff --git a/sot/source/sdstor/ucbstorage.cxx b/sot/source/sdstor/ucbstorage.cxx index f64fcc60c4b7..f36304414424 100644 --- a/sot/source/sdstor/ucbstorage.cxx +++ b/sot/source/sdstor/ucbstorage.cxx @@ -2274,7 +2274,7 @@ sal_Int16 UCBStorage_Impl::Commit() if ( bRet ) { // create a stream to write the manifest file - use a temp file - String aURL( aNewSubFolder.getURL() ); + OUString aURL( aNewSubFolder.getURL() ); ::utl::TempFile* pTempFile = new ::utl::TempFile( &aURL ); // get the stream from the temp file and create an output stream wrapper @@ -3182,7 +3182,7 @@ String UCBStorage::CreateLinkFile( const String& rName ) INetURLObject aFolderObj( rName ); String aName = aFolderObj.GetName(); aFolderObj.removeSegment(); - String aFolderURL( aFolderObj.GetMainURL( INetURLObject::NO_DECODE ) ); + OUString aFolderURL( aFolderObj.GetMainURL( INetURLObject::NO_DECODE ) ); ::utl::TempFile* pTempFile = new ::utl::TempFile( &aFolderURL ); // get the stream from the temp file -- cgit