summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-04 08:28:38 +0200
committerNoel Grandin <noel@peralex.com>2014-03-11 08:18:14 +0200
commit5e36e2cb7b9a8e52f198525949da257acd87d8c6 (patch)
treea593fa2d0e02f5304aa401b4f9cfe166ed338654 /cui
parentd442a6460f5f1c897358a0e51727c90cd6746ae2 (diff)
svx: sal_Bool->bool
Change-Id: Ifd9279e7ccc671395caa1e6f3723e86062d2fb08
Diffstat (limited to 'cui')
-rw-r--r--cui/source/options/optlingu.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/options/optlingu.cxx b/cui/source/options/optlingu.cxx
index 53f8dba2002f..590cf022930c 100644
--- a/cui/source/options/optlingu.cxx
+++ b/cui/source/options/optlingu.cxx
@@ -2081,7 +2081,7 @@ IMPL_LINK( SvxEditModulesDlg, LangSelectHdl_Impl, ListBox *, pBox )
OUString* pChange = aChange.getArray();
pChange[nStart] = pData->GetImplName();
bChanged |= pData->GetIndex() != nLocalIndex ||
- pData->IsChecked() != m_pModulesCLB->IsChecked(i);
+ pData->IsChecked() != (m_pModulesCLB->IsChecked(i) ? 1 : 0);
if(m_pModulesCLB->IsChecked(i))
nStart++;
++nLocalIndex;