diff options
author | Noel Grandin <noel@peralex.com> | 2015-07-08 15:02:31 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-07-10 08:09:00 +0000 |
commit | 54013188b24a1a02491a2853f731461253065424 (patch) | |
tree | 45078e1deb8bdfdde79a431daa81fde7c47621ad /ucb | |
parent | fd2749455fe25e24b448a44f9ada6113e5ac0d13 (diff) |
cleanup some unnecessary direct usage of the OString/OUString C API.
Change-Id: I6edee95aae1c169ce70063562a0c1b287e0c4735
Reviewed-on: https://gerrit.libreoffice.org/16861
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/file/prov.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/ucp/file/prov.cxx b/ucb/source/ucp/file/prov.cxx index 6f14d0561414..e0159ad6499e 100644 --- a/ucb/source/ucp/file/prov.cxx +++ b/ucb/source/ucp/file/prov.cxx @@ -259,7 +259,7 @@ FileProvider::compareContentIds( error = osl::FileBase::getSystemPathFromFileURL( aStatus2.getFileURL(), aPath2 ); if ( error == osl::FileBase::E_None ) - iComp = rtl_ustr_compareIgnoreAsciiCase( aPath1.getStr(), aPath2.getStr() ); + iComp = aPath1.compareToIgnoreAsciiCase( aPath2 ); } #endif } |