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 /sc/source | |
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 'sc/source')
-rw-r--r-- | sc/source/filter/oox/workbookhelper.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sc/source/filter/oox/workbookhelper.cxx b/sc/source/filter/oox/workbookhelper.cxx index d264e5621d6c..1ced0d0b2c67 100644 --- a/sc/source/filter/oox/workbookhelper.cxx +++ b/sc/source/filter/oox/workbookhelper.cxx @@ -106,9 +106,8 @@ using ::oox::core::XmlFilterBase; bool IgnoreCaseCompare::operator()( const OUString& rName1, const OUString& rName2 ) const { - // there is no wrapper in OUString, TODO: compare with collator - return ::rtl_ustr_compareIgnoreAsciiCase_WithLength( - rName1.getStr(), rName1.getLength(), rName2.getStr(), rName2.getLength() ) < 0; + // TODO: compare with collator + return rName1.compareToIgnoreAsciiCase(rName2 ) < 0; } class WorkbookGlobals : boost::noncopyable |