diff options
Diffstat (limited to 'sw/source/ui')
-rw-r--r-- | sw/source/ui/app/docshini.cxx | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/sw/source/ui/app/docshini.cxx b/sw/source/ui/app/docshini.cxx index a860c3ba67f7..383b4a3e4292 100644 --- a/sw/source/ui/app/docshini.cxx +++ b/sw/source/ui/app/docshini.cxx @@ -214,13 +214,8 @@ sal_Bool SwDocShell::InitNew( const uno::Reference < embed::XStorage >& xStor ) if ( i == 0 ) { LanguageType eUiLanguage = Application::GetSettings().GetUILanguage(); - switch( eUiLanguage ) - { - case LANGUAGE_KOREAN: - case LANGUAGE_KOREAN_JOHAB: - eLanguage = eUiLanguage; - break; - } + if (MsLangId::isKorean(eUiLanguage)) + eLanguage = eUiLanguage; } Font aLangDefFont = OutputDevice::GetDefaultFont( |