diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-07-17 13:14:14 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2013-07-17 13:14:14 +0200 |
commit | 92c08f0c21ba4d7b6174cedef2a1ba05e6260c1b (patch) | |
tree | c86191c83276b465ef3666676606485094f1028b /svl | |
parent | 6a18796cc606603f0e066e85d6849c0a67b5f765 (diff) |
After some trials, maybe even I can get things right
Change-Id: Ib553ea1ceff1d09dff86c4a36b896dddab854ba0
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/config/languageoptions.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/config/languageoptions.cxx b/svl/source/config/languageoptions.cxx index 3cc05230d147..15b160401380 100644 --- a/svl/source/config/languageoptions.cxx +++ b/svl/source/config/languageoptions.cxx @@ -208,7 +208,7 @@ bool SvtSystemLanguageOptions::isKeyboardLayoutTypeInstalled(sal_Int16 scriptTyp for(int i = 0; i < nLayouts; ++i) { - LCID lang = MAKELCID(((WORD)((DWORD_PTR)lpList[i] & 0xffff), SORT_DEFAULT)); + LCID lang = MAKELCID((WORD)((DWORD_PTR)lpList[i] & 0xffff), SORT_DEFAULT); if (MsLangId::getScriptType(lang) == scriptType) { isInstalled = true; |