diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-05-09 16:34:33 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-05-10 10:01:13 +0200 |
commit | 1156f981ac4557737dd915e89e11abaa61e29f14 (patch) | |
tree | 86e847ba365f478bb74d3fc4e3785689d8b45c6f /sal | |
parent | 0dc47739176493ded49b665c5fdfe0fe8fff39c1 (diff) |
an is used before a vowel sound
not before vowels with a consonant sound so its a url not an url
Change-Id: Ic27ff3bee67469284d460c31ced6f63cb3633db2
Reviewed-on: https://gerrit.libreoffice.org/72062
Reviewed-by: Jens Carl <j.carl43@gmx.de>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sal')
-rw-r--r-- | sal/osl/w32/file_url.cxx | 2 | ||||
-rw-r--r-- | sal/qa/osl/file/osl_File.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sal/osl/w32/file_url.cxx b/sal/osl/w32/file_url.cxx index c8291c056674..9ff2f95568af 100644 --- a/sal/osl/w32/file_url.cxx +++ b/sal/osl/w32/file_url.cxx @@ -914,7 +914,7 @@ oslFileError SAL_CALL osl_searchFileURL( rtl_uString *ustrSysPath = nullptr; oslFileError error; - /* First try to interpret the file name as an URL even a relative one */ + /* First try to interpret the file name as a URL even a relative one */ error = osl_getSystemPathFromFileURL_( ustrFileName, &ustrUNCPath, true ); /* So far we either have an UNC path or something invalid diff --git a/sal/qa/osl/file/osl_File.cxx b/sal/qa/osl/file/osl_File.cxx index 66aa45ad35a8..fa49b5d967b4 100644 --- a/sal/qa/osl/file/osl_File.cxx +++ b/sal/qa/osl/file/osl_File.cxx @@ -4965,7 +4965,7 @@ namespace osl_Directory CPPUNIT_ASSERT_EQUAL_MESSAGE ( - "Cannot convert the system path back to an URL", + "Cannot convert the system path back to a URL", osl::FileBase::E_None, rc ); return tmpTestPath; |