summaryrefslogtreecommitdiff
path: root/i18nlangtag
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2013-08-29 18:26:41 +0200
committerEike Rathke <erack@redhat.com>2013-08-29 18:27:13 +0200
commit38840e360b394cea0919f8b351fafbfc13fd3422 (patch)
tree7dd2c31ee80b652255aedb9ec34162d5a42ab3d2 /i18nlangtag
parent54202019eae37b4bfd6023d58b699f45404e1ce3 (diff)
these FIXME comments are now obsolete
Change-Id: I81b4214555d715bf597dc5dbe6b7cfaf53a344d8
Diffstat (limited to 'i18nlangtag')
-rw-r--r--i18nlangtag/source/languagetag/languagetag.cxx12
1 files changed, 0 insertions, 12 deletions
diff --git a/i18nlangtag/source/languagetag/languagetag.cxx b/i18nlangtag/source/languagetag/languagetag.cxx
index ca4fa41dbce7..887a58e18058 100644
--- a/i18nlangtag/source/languagetag/languagetag.cxx
+++ b/i18nlangtag/source/languagetag/languagetag.cxx
@@ -666,9 +666,6 @@ void LanguageTag::convertBcp47ToLang()
}
else
{
- /* FIXME: this is temporary. If we support locales that consist not
- * only of language and country, e.g. added script, this probably needs
- * to be adapted. */
if (!mbInitializedLocale)
convertBcp47ToLocale();
convertLocaleToLang();
@@ -692,9 +689,6 @@ void LanguageTag::convertLangToLocale()
void LanguageTag::convertLangToBcp47()
{
- /* FIXME: this is temporary. If we support locales that consist not only of
- * language and country, e.g. added script, this probably needs to be
- * adapted. */
if (!mbInitializedLocale)
convertLangToLocale();
convertLocaleToBcp47();
@@ -1464,9 +1458,6 @@ com::sun::star::lang::Locale LanguageTag::convertToLocale( LanguageType nLangID,
if (!bResolveSystem && lcl_isSystem( nLangID))
return lang::Locale();
- /* FIXME: this is temporary until code base is converted to not use
- * MsLangId::convert...() anymore. After that, proper new method has to be
- * implemented to allow I18NLANGTAG_QLT and script tag and such. */
return MsLangId::Conversion::convertLanguageToLocale( nLangID, bResolveSystem);
}
@@ -1477,9 +1468,6 @@ LanguageType LanguageTag::convertToLanguageType( const com::sun::star::lang::Loc
if (rLocale.Language.isEmpty() && !bResolveSystem)
return LANGUAGE_SYSTEM;
- /* FIXME: this is temporary until code base is converted to not use
- * MsLangId::convert...() anymore. After that, proper new method has to
- * be implemented to allow I18NLANGTAG_QLT and sript tag and such. */
return MsLangId::Conversion::convertLocaleToLanguage( rLocale);
}