summaryrefslogtreecommitdiff
path: root/i18nlangtag
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-04-07 12:06:47 +0200
committerLuboš Luňák <l.lunak@suse.cz>2013-04-07 14:23:11 +0200
commit1946794ae09ba732022fe6a74ea45e304ab70b84 (patch)
treee32bd7ba61fa021ecc7f8c85959df8ca837d6e81 /i18nlangtag
parent5b08c6e7a21dda94d5b755eea0b1ed1e9c199bec (diff)
mass removal of rtl:: prefixes for O(U)String*
Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk have kept them, in order not to break external API (the automatic using declaration is LO-internal). Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09
Diffstat (limited to 'i18nlangtag')
-rw-r--r--i18nlangtag/source/isolang/inunx.cxx2
-rw-r--r--i18nlangtag/source/languagetag/languagetag.cxx5
2 files changed, 2 insertions, 5 deletions
diff --git a/i18nlangtag/source/isolang/inunx.cxx b/i18nlangtag/source/isolang/inunx.cxx
index f47bfa4b67c2..a20a64dae1e2 100644
--- a/i18nlangtag/source/isolang/inunx.cxx
+++ b/i18nlangtag/source/isolang/inunx.cxx
@@ -108,7 +108,7 @@ static void getPlatformSystemLanguageImpl( LanguageType& rSystemLanguage,
#endif
}
#else /* MACOSX */
- rtl::OString aUnxLang( (pGetLangFromEnv)() );
+ OString aUnxLang( (pGetLangFromEnv)() );
nLang = MsLangId::convertUnxByteStringToLanguage( aUnxLang );
OSL_DOUBLE_CHECKED_LOCKING_MEMORY_BARRIER();
rSystemLanguage = nLang;
diff --git a/i18nlangtag/source/languagetag/languagetag.cxx b/i18nlangtag/source/languagetag/languagetag.cxx
index e1eea3b75f04..68c3aebe9768 100644
--- a/i18nlangtag/source/languagetag/languagetag.cxx
+++ b/i18nlangtag/source/languagetag/languagetag.cxx
@@ -28,9 +28,6 @@
#include "simple-langtag.cxx"
#endif
-using rtl::OUString;
-using rtl::OString;
-using rtl::OUStringBuffer;
using namespace com::sun::star;
// The actual pointer type of mpImplLangtag that is declared void* to not
@@ -80,7 +77,7 @@ public:
teardown();
}
private:
- rtl::OString maDataPath; // path to liblangtag data, "|" if system
+ OString maDataPath; // path to liblangtag data, "|" if system
sal_uInt32 mnRef;
void setupDataPath();