diff options
Diffstat (limited to 'include/unotest')
-rw-r--r-- | include/unotest/directories.hxx | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/include/unotest/directories.hxx b/include/unotest/directories.hxx index 04ee9287fe68..c1eaac83bafa 100644 --- a/include/unotest/directories.hxx +++ b/include/unotest/directories.hxx @@ -30,19 +30,17 @@ public: const OUString& getSrcRootURL() { return m_aSrcRootURL; } const OUString& getSrcRootPath() { return m_aSrcRootPath; } - // return a URL to a given c-str path from the source directory - OUString getURLFromSrc( const char *pPath ); + // return a URL to a given path from the source directory OUString getURLFromSrc( const OUString& rPath ); - // return a Path to a given c-str path from the source directory - OUString getPathFromSrc( const char *pPath ); + // return a Path to a given path from the source directory OUString getPathFromSrc( const OUString& rPath ); - // return a URL to a given c-str path from the workdir directory - OUString getURLFromWorkdir( const char *pPath ); + // return a URL to a given path from the workdir directory + OUString getURLFromWorkdir( const OUString &rPath ); - // return a Path to a given c-str path from the workdir directory - OUString getPathFromWorkdir( const char *pPath ); + // return a Path to a given path from the workdir directory + OUString getPathFromWorkdir( const OUString &rPath ); }; } |