diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2012-12-11 15:09:41 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2012-12-11 15:15:48 +0100 |
commit | 8532cbd3e685d7a1e4e26bf7c2b7bf0b1c38c5be (patch) | |
tree | 7e7a18840739fddf039a1c648f6ef2948c6a4528 /sc | |
parent | a930214c40389b82ee1060ed65669dc772ed36ea (diff) |
simply use string literals
Change-Id: Id82c9dc43d3af21d434ed5f9b7ef3bdae9c4289b
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/tool/cellkeywords.inl | 6 |
1 files 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[] = { |