diff options
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/dialog/docrecovery.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/dialog/docrecovery.cxx b/svx/source/dialog/docrecovery.cxx index 4e1d2f77839f..629e6455d9de 100644 --- a/svx/source/dialog/docrecovery.cxx +++ b/svx/source/dialog/docrecovery.cxx @@ -1263,7 +1263,7 @@ BrokenRecoveryDialog::BrokenRecoveryDialog(vcl::Window* pParent , m_sSavePath = SvtPathOptions().GetWorkPath(); INetURLObject aObj( m_sSavePath ); OUString sPath; - ::utl::LocalFileHelper::ConvertURLToSystemPath( aObj.GetMainURL( INetURLObject::NO_DECODE ), sPath ); + osl::FileBase::getSystemPathFromFileURL(aObj.GetMainURL( INetURLObject::NO_DECODE ), sPath); m_pSaveDirED->SetText( sPath ); impl_refresh(); @@ -1373,7 +1373,7 @@ void BrokenRecoveryDialog::impl_askForSavePath() { m_sSavePath = xFolderPicker->getDirectory(); OUString sPath; - ::utl::LocalFileHelper::ConvertURLToSystemPath( m_sSavePath, sPath ); + osl::FileBase::getSystemPathFromFileURL(m_sSavePath, sPath); m_pSaveDirED->SetText( sPath ); } } |