summaryrefslogtreecommitdiff
path: root/sal/osl/unx/file_path_helper.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sal/osl/unx/file_path_helper.hxx')
-rw-r--r--sal/osl/unx/file_path_helper.hxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/sal/osl/unx/file_path_helper.hxx b/sal/osl/unx/file_path_helper.hxx
index 18af761cb310..0f09ccac2025 100644
--- a/sal/osl/unx/file_path_helper.hxx
+++ b/sal/osl/unx/file_path_helper.hxx
@@ -44,13 +44,12 @@ void osl_systemPathRemoveSeparator(rtl_uString* pustrPath);
@param pustrPath [inout] a system path if the path is not the root path
'/' and has no trailing separator a separator
- will be added ppustrPath must not be NULL and
- must point to a valid rtl_uString
+ will be added ppustrPath must not be NULL
@returns nothing
*/
-void osl_systemPathEnsureSeparator(rtl_uString** ppustrPath);
+void osl_systemPathEnsureSeparator(OUString* ppustrPath);
/**
Returns true if the given path is a relative path and so starts not with '/'
@@ -208,7 +207,7 @@ namespace osl
inline void systemPathEnsureSeparator(/*inout*/ OUString& Path)
{
- osl_systemPathEnsureSeparator(&Path.pData);
+ osl_systemPathEnsureSeparator(&Path);
}
/*******************************************