summaryrefslogtreecommitdiffstats
path: root/basic
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2013-04-05 18:40:39 +0200
committerEike Rathke <erack@redhat.com>2013-04-05 19:10:48 +0200
commit876c619b944dfbc88464045f1400c549a01a1164 (patch)
treef15f930fe100bda4c0a0503728654801ac977fcd /basic
parentuse LanguageTag (diff)
downloadcore-876c619b944dfbc88464045f1400c549a01a1164.tar.gz
core-876c619b944dfbc88464045f1400c549a01a1164.zip
new module i18nlangtag
Moved portions from module i18npool, all of former i18nisolang1 library that now is i18nlangtag. Included are languagetag, isolang and mslangid. This i18nlangtag code is now even used by module comphelper, so disentangling i18npool and making this an own module was needed to not create circular module dependencies. Change-Id: Ib887c3d6dde667403fd22d382310ba5f1a9b0015
Diffstat (limited to 'basic')
-rw-r--r--basic/CppunitTest_basic_coverage.mk2
-rw-r--r--basic/CppunitTest_basic_scanner.mk2
-rw-r--r--basic/CppunitTest_basic_vba.mk2
-rw-r--r--basic/Library_sb.mk2
-rw-r--r--basic/inc/basic/sbxbase.hxx2
-rw-r--r--basic/qa/cppunit/basic_coverage.cxx2
-rw-r--r--basic/source/classes/global.cxx2
-rw-r--r--basic/source/inc/runtime.hxx2
-rw-r--r--basic/source/runtime/methods.cxx2
-rw-r--r--basic/source/sbx/sbxdate.cxx2
10 files changed, 10 insertions, 10 deletions
diff --git a/basic/CppunitTest_basic_coverage.mk b/basic/CppunitTest_basic_coverage.mk
index 55906f56d4a6..52585fb0b898 100644
--- a/basic/CppunitTest_basic_coverage.mk
+++ b/basic/CppunitTest_basic_coverage.mk
@@ -33,7 +33,7 @@ $(eval $(call gb_CppunitTest_use_libraries,basic_coverage, \
utl \
vcl \
xmlscript \
- i18nisolang1 \
+ i18nlangtag \
$(gb_UWINAPI) \
))
diff --git a/basic/CppunitTest_basic_scanner.mk b/basic/CppunitTest_basic_scanner.mk
index bd566af81e23..ec0c928a7b66 100644
--- a/basic/CppunitTest_basic_scanner.mk
+++ b/basic/CppunitTest_basic_scanner.mk
@@ -21,7 +21,7 @@ $(eval $(call gb_CppunitTest_use_libraries,basic_scanner, \
cppuhelper \
sal \
salhelper \
- i18nisolang1 \
+ i18nlangtag \
sb \
sot \
svl \
diff --git a/basic/CppunitTest_basic_vba.mk b/basic/CppunitTest_basic_vba.mk
index 25f41f34e8e4..9d61671b64e3 100644
--- a/basic/CppunitTest_basic_vba.mk
+++ b/basic/CppunitTest_basic_vba.mk
@@ -21,7 +21,7 @@ $(eval $(call gb_CppunitTest_use_libraries,basic_vba, \
comphelper \
cppu \
cppuhelper \
- i18nisolang1 \
+ i18nlangtag \
sal \
salhelper \
sb \
diff --git a/basic/Library_sb.mk b/basic/Library_sb.mk
index 8412735d6d89..35680567f8b7 100644
--- a/basic/Library_sb.mk
+++ b/basic/Library_sb.mk
@@ -44,7 +44,7 @@ $(eval $(call gb_Library_use_libraries,sb,\
cppuhelper \
sal \
salhelper \
- i18nisolang1 \
+ i18nlangtag \
sot \
svl \
svt \
diff --git a/basic/inc/basic/sbxbase.hxx b/basic/inc/basic/sbxbase.hxx
index 7b088bedda1e..16484ee929d8 100644
--- a/basic/inc/basic/sbxbase.hxx
+++ b/basic/inc/basic/sbxbase.hxx
@@ -20,7 +20,7 @@
#ifndef _SBXBASE_HXX
#define _SBXBASE_HXX
-#include <i18npool/lang.h>
+#include <i18nlangtag/lang.h>
#include <basic/sbxdef.hxx>
#include "basicdllapi.h"
#include <boost/ptr_container/ptr_vector.hpp>
diff --git a/basic/qa/cppunit/basic_coverage.cxx b/basic/qa/cppunit/basic_coverage.cxx
index ea2969a12cbf..56b9ab6a8412 100644
--- a/basic/qa/cppunit/basic_coverage.cxx
+++ b/basic/qa/cppunit/basic_coverage.cxx
@@ -11,7 +11,7 @@
#include <osl/file.hxx>
#include "basic/sbmod.hxx"
#include "basic/sbmeth.hxx"
-#include <i18npool/languagetag.hxx>
+#include <i18nlangtag/languagetag.hxx>
#include <unotools/syslocaleoptions.hxx>
namespace
diff --git a/basic/source/classes/global.cxx b/basic/source/classes/global.cxx
index 43a3414f5e0a..3862bfb24f3e 100644
--- a/basic/source/classes/global.cxx
+++ b/basic/source/classes/global.cxx
@@ -28,7 +28,7 @@
#include "basic/global.hxx"
#include <comphelper/processfactory.hxx>
-#include <i18npool/lang.h>
+#include <i18nlangtag/lang.h>
#include <rtl/instance.hxx>
#include <unotools/transliterationwrapper.hxx>
#include <vcl/svapp.hxx>
diff --git a/basic/source/inc/runtime.hxx b/basic/source/inc/runtime.hxx
index b1ba55b24063..fd0911ad9ee4 100644
--- a/basic/source/inc/runtime.hxx
+++ b/basic/source/inc/runtime.hxx
@@ -28,7 +28,7 @@
#include <com/sun/star/uno/Sequence.hxx>
#include <osl/file.hxx>
#include <rtl/math.hxx>
-#include <i18npool/lang.h>
+#include <i18nlangtag/lang.h>
#include <vector>
#include <com/sun/star/lang/XComponent.hpp>
diff --git a/basic/source/runtime/methods.cxx b/basic/source/runtime/methods.cxx
index f368ee2ca6cc..703f6d21cfc5 100644
--- a/basic/source/runtime/methods.cxx
+++ b/basic/source/runtime/methods.cxx
@@ -33,7 +33,7 @@
#include <unotools/charclass.hxx>
#include <unotools/ucbstreamhelper.hxx>
#include <tools/wldcrd.hxx>
-#include <i18npool/lang.h>
+#include <i18nlangtag/lang.h>
#include <rtl/string.hxx>
#include <rtl/strbuf.hxx>
diff --git a/basic/source/sbx/sbxdate.cxx b/basic/source/sbx/sbxdate.cxx
index f28c5851f954..40896b2aeb96 100644
--- a/basic/source/sbx/sbxdate.cxx
+++ b/basic/source/sbx/sbxdate.cxx
@@ -21,7 +21,7 @@
#include <svl/zforlist.hxx>
#include <tools/errcode.hxx>
#include <tools/color.hxx>
-#include <i18npool/lang.h>
+#include <i18nlangtag/lang.h>
#include <basic/sbx.hxx>
#include "sbxconv.hxx"
#include "math.h"