diff options
author | Noel Grandin <noel@peralex.com> | 2015-10-29 12:44:31 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-10-29 11:18:10 +0000 |
commit | 95b22704e8452e6360d0acf846e8c967aab146d7 (patch) | |
tree | 267d1bc02e2ba65aef23a19d9bfb7d96a9af9ebf /svl/source/config/languageoptions.cxx | |
parent | 457f8fd4d33053510b0e44d210b7febd2f07a4ff (diff) |
com::sun::star->css in starmath,stoc,svgio,svl
Change-Id: If4308b358a55351f6e951ebf055df076ce4ad4ce
Reviewed-on: https://gerrit.libreoffice.org/19667
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'svl/source/config/languageoptions.cxx')
-rw-r--r-- | svl/source/config/languageoptions.cxx | 10 |
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: */ |