diff options
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/config/pathoptions.cxx | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/unotools/source/config/pathoptions.cxx b/unotools/source/config/pathoptions.cxx index 8a56dab924d0..1cd2c54bdf3d 100644 --- a/unotools/source/config/pathoptions.cxx +++ b/unotools/source/config/pathoptions.cxx @@ -815,25 +815,23 @@ void SvtPathOptions::SetWorkPath( const String& rPath ) // ----------------------------------------------------------------------- -String SvtPathOptions::SubstituteVariable( const String& rVar ) const +OUString SvtPathOptions::SubstituteVariable( const OUString& rVar ) const { - String aRet = pImp->SubstVar( rVar ); - return aRet; + return pImp->SubstVar( rVar ); } // ----------------------------------------------------------------------- -String SvtPathOptions::ExpandMacros( const String& rPath ) const +OUString SvtPathOptions::ExpandMacros( const OUString& rPath ) const { return pImp->ExpandMacros( rPath ); } // ----------------------------------------------------------------------- -String SvtPathOptions::UseVariable( const String& rPath ) const +OUString SvtPathOptions::UseVariable( const OUString& rPath ) const { - String aRet = pImp->UsePathVariables( rPath ); - return aRet; + return pImp->UsePathVariables( rPath ); } // ----------------------------------------------------------------------- |