summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2013-07-17 13:08:12 +0200
committerFridrich Štrba <fridrich.strba@bluewin.ch>2013-07-17 13:08:12 +0200
commit6a18796cc606603f0e066e85d6849c0a67b5f765 (patch)
treeaa45893b6ac3af68d58c585687cd2e4f08c33419 /svl
parentc6c2c7014809b0f74c922833220de4ccc723defc (diff)
Brackets are cheap, so use them
Change-Id: If5b539025020a2e9a35fa6e7bc70bcc6a9a4f4c6
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 7184ea19b4e2..3cc05230d147 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;