From 45b19123a63f23fe37b11b063d7567bf79ef09aa Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 6 Jan 2012 23:00:40 +0000 Subject: simplify CharClass multiple variants of toUpper (etc) some that take a non-const OUString or String and modify it some that take a const OUString or String and return a new one some that take part of a const OUString or String and return a new one --- sot/source/sdstor/stgelem.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'sot') diff --git a/sot/source/sdstor/stgelem.cxx b/sot/source/sdstor/stgelem.cxx index bb163e6f42de..ff73a590f128 100644 --- a/sot/source/sdstor/stgelem.cxx +++ b/sot/source/sdstor/stgelem.cxx @@ -247,10 +247,9 @@ static String ToUpperUnicode( const String & rStr ) static rtl::OUString aEN(RTL_CONSTASCII_USTRINGPARAM("en")); static rtl::OUString aUS(RTL_CONSTASCII_USTRINGPARAM("US")); static CharClass aCC( com::sun::star::lang::Locale( aEN, aUS, rtl::OUString() ) ); - return aCC.toUpper( rStr, 0, rStr.Len() ); + return aCC.uppercase( rStr ); } - sal_Bool StgEntry::SetName( const String& rName ) { // I don't know the locale, so en_US is hopefully fine -- cgit