From 669128178f4697f4fba746f1ece1c18b0056022a Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 8 Nov 2013 14:13:54 +0100 Subject: Make INetURLObject-from-OUString ctor explicit ...and clean up call sites. Change-Id: I7219a33652835e82fdc44e9e801a7e62868e4f38 --- cui/source/dialogs/cuigaldlg.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cui/source/dialogs/cuigaldlg.cxx') diff --git a/cui/source/dialogs/cuigaldlg.cxx b/cui/source/dialogs/cuigaldlg.cxx index 2c8d085d9594..86e405832478 100644 --- a/cui/source/dialogs/cuigaldlg.cxx +++ b/cui/source/dialogs/cuigaldlg.cxx @@ -316,7 +316,7 @@ void TakeThread::execute() { SolarMutexGuard aGuard; - mpProgress->SetFile( aURL.GetMainURL( INetURLObject::DECODE_UNAMBIGUOUS ) ); + mpProgress->SetFile( aURL ); pStatusProgress->Update( i, nEntries - 1 ); mpProgress->Sync(); pThm->InsertURL( aURL ); @@ -1008,7 +1008,7 @@ void TPGalleryThemeProperties::SearchFiles() aLbxFound.Clear(); pProgress->SetFileType( aCbbFileType.GetText() ); - pProgress->SetDirectory( OUString() ); + pProgress->SetDirectory( INetURLObject() ); pProgress->Update(); pProgress->StartExecuteModal( LINK( this, TPGalleryThemeProperties, EndSearchProgressHdl ) ); -- cgit