summaryrefslogtreecommitdiff
path: root/sal/osl/unx/uunxapi.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2018-10-23 12:06:00 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-10-24 14:43:34 +0200
commit6f50961e69406a17d6ec998956a6b33208b1001b (patch)
tree413c83df969e73c5cba1e11ef3740afc748ee1f5 /sal/osl/unx/uunxapi.hxx
parent4e729de73f2947155248f8df5897380611b87917 (diff)
remove more rtl::OUString and OString prefixes
which seem to have snuck back in since the great rounds of removals. Change-Id: I85f7f5f4801c0b48dae8b50f51f83595b286d6a1 Reviewed-on: https://gerrit.libreoffice.org/62229 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sal/osl/unx/uunxapi.hxx')
-rw-r--r--sal/osl/unx/uunxapi.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sal/osl/unx/uunxapi.hxx b/sal/osl/unx/uunxapi.hxx
index 4be4fbb28748..5030b75ca214 100644
--- a/sal/osl/unx/uunxapi.hxx
+++ b/sal/osl/unx/uunxapi.hxx
@@ -60,7 +60,7 @@ int ftruncate_with_name(int fd, sal_uInt64 uSize, rtl_String* path);
namespace osl
{
- inline int access(const rtl::OUString& ustrPath, int mode)
+ inline int access(const OUString& ustrPath, int mode)
{
return access_u(ustrPath.pData, mode);
}
@@ -79,18 +79,18 @@ namespace osl
**********************************/
inline bool realpath(
- const rtl::OUString& ustrFileName,
- rtl::OUString& ustrResolvedName)
+ const OUString& ustrFileName,
+ OUString& ustrResolvedName)
{
return realpath_u(ustrFileName.pData, &ustrResolvedName.pData);
}
- inline int lstat(const rtl::OUString& ustrPath, struct stat& buf)
+ inline int lstat(const OUString& ustrPath, struct stat& buf)
{
return lstat_u(ustrPath.pData, &buf);
}
- inline int mkdir(const rtl::OUString& aPath, mode_t aMode)
+ inline int mkdir(const OUString& aPath, mode_t aMode)
{
return mkdir_u(aPath.pData, aMode);
}