convert includes/svtools/openfiledroptargetlistener.hxx to OUString

Change-Id: I09fe1739e92aa522c7c6f085d0355fd7c03c047d
This commit is contained in:
Noel Grandin 2013-08-14 10:02:36 +02:00
parent 55f2f0864e
commit f4d750cf89
2 changed files with 2 additions and 2 deletions

View file

@ -64,7 +64,7 @@ class SVT_DLLPUBLIC OpenFileDropTargetListener : public ::cppu::WeakImplHelper1<
void implts_BeginDrag( const css::uno::Sequence< css::datatransfer::DataFlavor >& rSupportedDataFlavors );
void implts_EndDrag();
sal_Bool implts_IsDropFormatSupported( SotFormatStringId nFormat );
void implts_OpenFile( const String& rFilePath );
void implts_OpenFile( const OUString& rFilePath );
};
#endif // SVTOOLS_DROPTARGETLISTENER_HXX

View file

@ -191,7 +191,7 @@ sal_Bool OpenFileDropTargetListener::implts_IsDropFormatSupported( SotFormatStri
return bRet;
}
void OpenFileDropTargetListener::implts_OpenFile( const String& rFilePath )
void OpenFileDropTargetListener::implts_OpenFile( const OUString& rFilePath )
{
OUString aFileURL;
if ( !::utl::LocalFileHelper::ConvertPhysicalNameToURL( rFilePath, aFileURL ) )