diff options
Diffstat (limited to 'lingucomponent')
-rw-r--r-- | lingucomponent/source/languageguessing/guesslang.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lingucomponent/source/languageguessing/guesslang.cxx b/lingucomponent/source/languageguessing/guesslang.cxx index 2b2da0e0e544..488ce106eb26 100644 --- a/lingucomponent/source/languageguessing/guesslang.cxx +++ b/lingucomponent/source/languageguessing/guesslang.cxx @@ -20,6 +20,7 @@ #include <iostream> #include <boost/noncopyable.hpp> +#include <osl/file.hxx> #include <tools/debug.hxx> #include <sal/config.h> @@ -34,7 +35,6 @@ #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/linguistic2/XLanguageGuessing.hpp> #include <unotools/pathoptions.hxx> -#include <unotools/localfilehelper.hxx> #include <osl/thread.h> #include <sal/macros.h> @@ -124,7 +124,7 @@ void LangGuess_Impl::EnsureInitialized() // set default fingerprint path to where those get installed OUString aPhysPath; OUString aURL( SvtPathOptions().GetFingerprintPath() ); - utl::LocalFileHelper::ConvertURLToPhysicalName( aURL, aPhysPath ); + osl::FileBase::getSystemPathFromFileURL( aURL, aPhysPath ); #ifdef WNT aPhysPath += "\\"; #else |