summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2022-05-23 09:33:51 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2022-05-23 17:26:15 +0200
commit72582e9fb3d634a28c1466126bbe8e36fc00b446 (patch)
tree8dfafb8484a0d806f2555af253b4378a15e0d717 /sal
parentecae51e5f14dad2591d6a15f2e70b4d024fb7985 (diff)
rename osl_getSystemPathFromFileURL_Ex->getSystemPathFromFileURL_Ex
so I can more readily distinguish between functions that are actually in the OSL API and functions that are not Change-Id: Ie113c30ea15d05457633396d56bca08057e38b60 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/134800 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sal')
-rw-r--r--sal/osl/unx/file_url.cxx4
-rw-r--r--sal/osl/unx/file_url.hxx2
-rw-r--r--sal/osl/unx/tempfile.cxx2
3 files changed, 4 insertions, 4 deletions
diff --git a/sal/osl/unx/file_url.cxx b/sal/osl/unx/file_url.cxx
index 2e21684eba8f..4b5a16885cb3 100644
--- a/sal/osl/unx/file_url.cxx
+++ b/sal/osl/unx/file_url.cxx
@@ -444,7 +444,7 @@ oslFileError SAL_CALL osl_getFileURLFromSystemPath( rtl_uString *ustrSystemPath,
/*
* relative URLs are not accepted
*/
-oslFileError osl_getSystemPathFromFileURL_Ex(
+oslFileError getSystemPathFromFileURL_Ex(
rtl_uString *ustrFileURL, rtl_uString **pustrSystemPath)
{
rtl_uString* temp = nullptr;
@@ -711,7 +711,7 @@ oslFileError osl_getAbsoluteFileURL(
if (systemPathIsRelativePath(unresolved_path))
{
OUString base_path;
- oslFileError rc = osl_getSystemPathFromFileURL_Ex(ustrBaseDirURL, &base_path.pData);
+ oslFileError rc = getSystemPathFromFileURL_Ex(ustrBaseDirURL, &base_path.pData);
if (rc != osl_File_E_None)
return rc;
diff --git a/sal/osl/unx/file_url.hxx b/sal/osl/unx/file_url.hxx
index f9f31eb2056a..3ffd9e06bace 100644
--- a/sal/osl/unx/file_url.hxx
+++ b/sal/osl/unx/file_url.hxx
@@ -27,7 +27,7 @@ namespace rtl {
class OUString;
}
-oslFileError osl_getSystemPathFromFileURL_Ex(rtl_uString *ustrFileURL, rtl_uString **pustrSystemPath);
+oslFileError getSystemPathFromFileURL_Ex(rtl_uString *ustrFileURL, rtl_uString **pustrSystemPath);
oslFileError FileURLToPath(char * buffer, size_t bufLen, rtl_uString* ustrFileURL);
diff --git a/sal/osl/unx/tempfile.cxx b/sal/osl/unx/tempfile.cxx
index 00ae0664b2c0..bd8e88db742c 100644
--- a/sal/osl/unx/tempfile.cxx
+++ b/sal/osl/unx/tempfile.cxx
@@ -127,7 +127,7 @@ static oslFileError osl_setup_base_directory_impl_(
if (error == osl_File_E_None)
{
- error = osl_getSystemPathFromFileURL_Ex(dir_url, &dir);
+ error = getSystemPathFromFileURL_Ex(dir_url, &dir);
rtl_uString_release(dir_url);
}