summaryrefslogtreecommitdiffstats
path: root/comphelper/source/container
diff options
context:
space:
mode:
authorFrank Schoenheit [fs] <frank.schoenheit@oracle.com>2011-01-18 22:11:21 +0100
committerFrank Schoenheit [fs] <frank.schoenheit@oracle.com>2011-01-18 22:11:21 +0100
commit7ad4e757c3a37889e77ecc60081ef12c27cb8815 (patch)
tree924e0b126648b5323d56cef4f29933ef1aff3734 /comphelper/source/container
parentgridsort: corrected include (diff)
downloadcore-7ad4e757c3a37889e77ecc60081ef12c27cb8815.tar.gz
core-7ad4e757c3a37889e77ecc60081ef12c27cb8815.zip
gridsort: getStandardLessPredicate: optional collator instance for string comparison
Diffstat (limited to 'comphelper/source/container')
-rw-r--r--comphelper/source/container/enumerablemap.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/comphelper/source/container/enumerablemap.cxx b/comphelper/source/container/enumerablemap.cxx
index ecc9494056ee..a73983517751 100644
--- a/comphelper/source/container/enumerablemap.cxx
+++ b/comphelper/source/container/enumerablemap.cxx
@@ -405,7 +405,7 @@ namespace comphelper
throw IllegalTypeException( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Unsupported value type." ) ), *this );
// create the comparator for the KeyType, and throw if the type is not supported
- ::std::auto_ptr< IKeyPredicateLess > pComparator( getStandardLessPredicate( aKeyType ) );
+ ::std::auto_ptr< IKeyPredicateLess > pComparator( getStandardLessPredicate( aKeyType, NULL ) );
if ( !pComparator.get() )
throw IllegalTypeException( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Unsupported key type." ) ), *this );