summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2013-07-17 13:14:14 +0200
committerFridrich Štrba <fridrich.strba@bluewin.ch>2013-07-17 13:14:14 +0200
commit92c08f0c21ba4d7b6174cedef2a1ba05e6260c1b (patch)
treec86191c83276b465ef3666676606485094f1028b /svl
parent6a18796cc606603f0e066e85d6849c0a67b5f765 (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.cxx2
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;