summaryrefslogtreecommitdiff
path: root/sc/source/filter/excel
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-09-22 16:58:29 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-09-22 20:32:02 +0100
commit81202ae7487b139cb473ff85634003b36d67e8c4 (patch)
tree5f204d5078b696b2f99aa360d3042a24b34a213b /sc/source/filter/excel
parentda2c3cf0aa78cb3363b3ded2bebc418d0cc7ffca (diff)
Related: fdo#38838 remove UniString::CompareIgnoreCaseToAscii
Change-Id: I4a9b34d63d2534a35aa9a878b8c2bec15262c2be
Diffstat (limited to 'sc/source/filter/excel')
-rw-r--r--sc/source/filter/excel/xistyle.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/filter/excel/xistyle.cxx b/sc/source/filter/excel/xistyle.cxx
index a22ef9b08dfb..c1d9d361fb34 100644
--- a/sc/source/filter/excel/xistyle.cxx
+++ b/sc/source/filter/excel/xistyle.cxx
@@ -1542,8 +1542,8 @@ namespace {
/** Functor for case-insensitive string comparison, usable in maps etc. */
struct IgnoreCaseCompare
{
- inline bool operator()( const String& rName1, const String& rName2 ) const
- { return rName1.CompareIgnoreCaseToAscii( rName2 ) == COMPARE_LESS; }
+ inline bool operator()( const OUString& rName1, const OUString& rName2 ) const
+ { return rName1.compareToIgnoreAsciiCase( rName2 ) < 0; }
};
} // namespace
@@ -1551,7 +1551,7 @@ struct IgnoreCaseCompare
void XclImpXFBuffer::CreateUserStyles()
{
// calculate final names of all styles
- typedef ::std::map< String, XclImpStyle*, IgnoreCaseCompare > CellStyleNameMap;
+ typedef ::std::map< OUString, XclImpStyle*, IgnoreCaseCompare > CellStyleNameMap;
typedef ::std::vector< XclImpStyle* > XclImpStyleVector;
CellStyleNameMap aCellStyles;