summaryrefslogtreecommitdiff
path: root/svl/source/config/languageoptions.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svl/source/config/languageoptions.cxx')
-rw-r--r--svl/source/config/languageoptions.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/svl/source/config/languageoptions.cxx b/svl/source/config/languageoptions.cxx
index 2022cbe551e0..3ec918d881b3 100644
--- a/svl/source/config/languageoptions.cxx
+++ b/svl/source/config/languageoptions.cxx
@@ -144,10 +144,10 @@ SvtScriptType SvtLanguageOptions::GetScriptTypeOfLanguage( sal_uInt16 nLang )
SvtScriptType nScript;
switch (nScriptType)
{
- case ::com::sun::star::i18n::ScriptType::ASIAN:
+ case css::i18n::ScriptType::ASIAN:
nScript = SvtScriptType::ASIAN;
break;
- case ::com::sun::star::i18n::ScriptType::COMPLEX:
+ case css::i18n::ScriptType::COMPLEX:
nScript = SvtScriptType::COMPLEX;
break;
default:
@@ -211,7 +211,7 @@ void SvtSystemLanguageOptions::ImplCommit()
//does nothing
}
-void SvtSystemLanguageOptions::Notify( const com::sun::star::uno::Sequence< OUString >& )
+void SvtSystemLanguageOptions::Notify( const css::uno::Sequence< OUString >& )
{
// no listeners supported yet
}
@@ -257,13 +257,13 @@ bool SvtSystemLanguageOptions::isKeyboardLayoutTypeInstalled(sal_Int16 scriptTyp
bool SvtSystemLanguageOptions::isCTLKeyboardLayoutInstalled() const
{
- return isKeyboardLayoutTypeInstalled(::com::sun::star::i18n::ScriptType::COMPLEX);
+ return isKeyboardLayoutTypeInstalled(css::i18n::ScriptType::COMPLEX);
}
bool SvtSystemLanguageOptions::isCJKKeyboardLayoutInstalled() const
{
- return isKeyboardLayoutTypeInstalled(::com::sun::star::i18n::ScriptType::ASIAN);
+ return isKeyboardLayoutTypeInstalled(css::i18n::ScriptType::ASIAN);
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */