From 236714e86c1c517d84d38395efabaf6e3793d196 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 19 Aug 2015 10:43:19 +0200 Subject: Clean up remaining utl::LocalFileHelper::Convert... together with 58d68a1bc9146334376206ae7ba8b1a6594a1040 "ConvertURLToSystemPath->getSystemPathFromFileURL" and 28f3464a571a23a2c16bd0980e9021b95d011511 "ConvertSystemPathToURL->getFileURLFromSystemPath," this replaces all those Convert... functionality with direct calls to the corresponding osl::FileBase functions. Change-Id: I2876171cd337a5eb939d25d8cf1e0c1253ff73a7 --- fpicker/source/office/iodlg.cxx | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) (limited to 'fpicker') diff --git a/fpicker/source/office/iodlg.cxx b/fpicker/source/office/iodlg.cxx index e4c5637006a7..65c0d444786d 100644 --- a/fpicker/source/office/iodlg.cxx +++ b/fpicker/source/office/iodlg.cxx @@ -17,6 +17,8 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ +#include + #include #include "iodlg.hxx" #include @@ -39,7 +41,6 @@ #include "svtools/svtabbx.hxx" #include "svtools/treelistentry.hxx" #include -#include #include "svtools/helpid.hrc" #include @@ -211,7 +212,8 @@ namespace if ( INetProtocol::NotValid == aURL.GetProtocol() ) { OUString sURL; - if ( ::utl::LocalFileHelper::ConvertPhysicalNameToURL( aNewFile, sURL ) ) + if ( osl::FileBase::getFileURLFromSystemPath( aNewFile, sURL ) + == osl::FileBase::E_None ) aURL = INetURLObject( sURL ); } if ( INetProtocol::File == aURL.GetProtocol() ) @@ -1784,8 +1786,12 @@ void SvtFileDialog::displayIOException( const OUString& _rURL, IOErrorCode _eCod try { // create make a human-readable string from the URL - OUString sDisplayPath( _rURL ); - osl::FileBase::getSystemPathFromFileURL(_rURL, sDisplayPath); + OUString sDisplayPath; + if (osl::FileBase::getSystemPathFromFileURL(_rURL, sDisplayPath) + == osl::FileBase::E_None) + { + sDisplayPath = _rURL; + } // build an own exception which tells "access denied" InteractiveAugmentedIOException aException; -- cgit