diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-09-23 20:55:37 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-09-24 12:15:13 +0100 |
commit | dd691312a3a0e0e18ade5c64a3c4f5115c3fde0f (patch) | |
tree | 489780181fd40255c2534614664c59b9f6a7716c /sc | |
parent | 3be5deadcb46e09d84d99b2b108b65b06ff356e9 (diff) |
we shouldn't need explicit lt_rtl_OUString, etc things anymore
Change-Id: Ibeec3fcc353e07e61fb2c838b318e0a04081ce2c
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/excel/xeescher.cxx | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/sc/source/filter/excel/xeescher.cxx b/sc/source/filter/excel/xeescher.cxx index e340ff8dbf1e..6e2ee0622e64 100644 --- a/sc/source/filter/excel/xeescher.cxx +++ b/sc/source/filter/excel/xeescher.cxx @@ -1399,14 +1399,6 @@ XclExpComments::XclExpComments( SCTAB nTab, XclExpRecordList< XclExpNote >& rNot { } -struct OUStringLess : public std::binary_function<OUString, OUString, bool> -{ - bool operator()(const OUString& x, const OUString& y) const - { - return x.compareTo( y ) < 0; - } -}; - void XclExpComments::SaveXml( XclExpXmlStream& rStrm ) { if( mrNotes.IsEmpty() ) @@ -1436,7 +1428,7 @@ void XclExpComments::SaveXml( XclExpXmlStream& rStrm ) rComments->startElement( XML_authors, FSEND ); - typedef std::set< OUString, OUStringLess > Authors; + typedef std::set<OUString> Authors; Authors aAuthors; size_t nNotes = mrNotes.GetSize(); |