[Libreoffice-commits] .: shell/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Fri Nov 16 16:04:10 PST 2012


 shell/source/tools/lngconvex/lngconvex.cxx |   10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

New commits:
commit 577b95a96092b50b454ad2d5a12edc35120db1d6
Author: Eike Rathke <erack at redhat.com>
Date:   Sat Nov 17 01:03:36 2012 +0100

    use LanguageTag
    
    Change-Id: I1ec1f619cb6b427b4376d28292d3412ba6eb67ee

diff --git a/shell/source/tools/lngconvex/lngconvex.cxx b/shell/source/tools/lngconvex/lngconvex.cxx
index 473bf69..942ae75 100644
--- a/shell/source/tools/lngconvex/lngconvex.cxx
+++ b/shell/source/tools/lngconvex/lngconvex.cxx
@@ -53,7 +53,7 @@ typedef unsigned short WORD;
 #include "sal/main.h"
 
 #include "tools/config.hxx"
-#include "i18npool/mslangid.hxx"
+#include "i18npool/languagetag.hxx"
 
 #include <iostream>
 #include <fstream>
@@ -332,7 +332,9 @@ void add_group_entries(
         rtl::OString iso_lang = aConfig.GetKeyName(sal::static_int_cast<sal_uInt16>(i));
         rtl::OString key_value_utf8 = aConfig.ReadKey(sal::static_int_cast<sal_uInt16>(i));
         iso_lang_identifier myiso_lang( iso_lang );
-        LanguageType ltype = MsLangId::convertIsoNamesToLanguage(myiso_lang.language(), myiso_lang.country());
+        LanguageType ltype = LanguageTag(
+                OStringToOUString( myiso_lang.language(), RTL_TEXTENCODING_UTF8),
+                OStringToOUString( myiso_lang.country(), RTL_TEXTENCODING_UTF8)).getLanguageType();
         if(  ( ltype & 0x0200 ) == 0 && map[ ltype ].empty()  )
         {
             Substitutor.set_language(iso_lang_identifier(iso_lang));
@@ -459,7 +461,9 @@ void start_language_section(
 
     std::string lang_section("LANGUAGE ");
 
-    LanguageType ltype = MsLangId::convertIsoNamesToLanguage(iso_lang.language(), iso_lang.country());
+    LanguageType ltype = LanguageTag(
+            OStringToOUString( iso_lang.language(), RTL_TEXTENCODING_UTF8),
+            OStringToOUString( iso_lang.country(), RTL_TEXTENCODING_UTF8)).getLanguageType();
 
     char buff[10];
     int primLangID = PRIMARYLANGID(ltype);


More information about the Libreoffice-commits mailing list