From 8532cbd3e685d7a1e4e26bf7c2b7bf0b1c38c5be Mon Sep 17 00:00:00 2001 From: Luboš Luňák Date: Tue, 11 Dec 2012 15:09:41 +0100 Subject: simply use string literals Change-Id: Id82c9dc43d3af21d434ed5f9b7ef3bdae9c4289b --- sc/source/core/tool/cellkeywords.inl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sc/source/core/tool/cellkeywords.inl b/sc/source/core/tool/cellkeywords.inl index ce58ccf9e838..0d6c57fb7145 100644 --- a/sc/source/core/tool/cellkeywords.inl +++ b/sc/source/core/tool/cellkeywords.inl @@ -21,7 +21,7 @@ // --------------------------------------------------------------------------- // French language locale (automatically generated) // --------------------------------------------------------------------------- -static const Locale aFr(OUString(RTL_CONSTASCII_USTRINGPARAM("fr")), OUString(), OUString()); +static const Locale aFr("fr", "", ""); // pre instantiations of localized function names static const sal_Unicode cell_address_fr[] = { @@ -76,7 +76,7 @@ addToMap(pFr, aFr); // --------------------------------------------------------------------------- // Hungarian language locale (automatically generated) // --------------------------------------------------------------------------- -static const Locale aHu(OUString(RTL_CONSTASCII_USTRINGPARAM("hu")), OUString(), OUString()); +static const Locale aHu("hu", "", ""); // pre instantiations of localized function names static const sal_Unicode cell_address_hu[] = { @@ -146,7 +146,7 @@ addToMap(pHu, aHu); // --------------------------------------------------------------------------- // German language locale (automatically generated) // --------------------------------------------------------------------------- -static const Locale aDe(OUString(RTL_CONSTASCII_USTRINGPARAM("de")), OUString(), OUString()); +static const Locale aDe("de", "", ""); // pre instantiations of localized function names static const sal_Unicode cell_row_de[] = { -- cgit