summaryrefslogtreecommitdiff
path: root/sot/source/sdstor/stgelem.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sot/source/sdstor/stgelem.cxx')
-rw-r--r--sot/source/sdstor/stgelem.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sot/source/sdstor/stgelem.cxx b/sot/source/sdstor/stgelem.cxx
index c51dc1be6339..e8eb0e59db45 100644
--- a/sot/source/sdstor/stgelem.cxx
+++ b/sot/source/sdstor/stgelem.cxx
@@ -235,11 +235,11 @@ static String ToUpperUnicode( const String & rStr )
// I don't know the locale, so en_US is hopefully fine
/*
com.sun.star.lang.Locale aLocale;
- aLocale.Language = OUString(RTL_CONSTASCII_USTRINGPARAM("en"));
- aLocale.Country = OUString(RTL_CONSTASCII_USTRINGPARAM("US"));
+ aLocale.Language = OUString("en");
+ aLocale.Country = OUString("US");
*/
- static rtl::OUString aEN(RTL_CONSTASCII_USTRINGPARAM("en"));
- static rtl::OUString aUS(RTL_CONSTASCII_USTRINGPARAM("US"));
+ static rtl::OUString aEN("en");
+ static rtl::OUString aUS("US");
static CharClass aCC( com::sun::star::lang::Locale( aEN, aUS, rtl::OUString() ) );
return aCC.uppercase( rStr );
}