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>
This commit is contained in:
parent
ecae51e5f1
commit
72582e9fb3
3 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue