summaryrefslogtreecommitdiff
path: root/desktop/source/migration
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-09-16 08:33:10 +0200
committerNoel Grandin <noel@peralex.com>2013-09-17 09:05:21 +0200
commit7865b9762da6d8b3c45cc08df1f3da3f3179b29f (patch)
tree18253ecd3f2211b87a184d95f354a5262719a783 /desktop/source/migration
parent73c560a63e66a24233e635d60b7a97356eebc1e4 (diff)
convert DESKTOP module from String to OUString
Change-Id: I5dc43849ace8edbab9e6308db80a70797f090c69
Diffstat (limited to 'desktop/source/migration')
-rw-r--r--desktop/source/migration/services/wordbookmigration.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/migration/services/wordbookmigration.cxx b/desktop/source/migration/services/wordbookmigration.cxx
index 5abe441c72ec..d359f185c665 100644
--- a/desktop/source/migration/services/wordbookmigration.cxx
+++ b/desktop/source/migration/services/wordbookmigration.cxx
@@ -153,7 +153,7 @@ bool IsUserWordbook( const OUString& rFile )
static const sal_Char* pVerOOo7 = "OOoUserDict1";
bool bRet = false;
- SvStream* pStream = ::utl::UcbStreamHelper::CreateStream( String(rFile), STREAM_STD_READ );
+ SvStream* pStream = ::utl::UcbStreamHelper::CreateStream( OUString(rFile), STREAM_STD_READ );
if ( pStream && !pStream->GetError() )
{
sal_Size nSniffPos = pStream->Tell();