summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2014-01-21 16:27:37 +0200
committerTor Lillqvist <tml@collabora.com>2014-01-21 16:32:25 +0200
commit0a4abbda7c08ecc52712e356371a415137137929 (patch)
tree596b6eccc6ec32ff783497ccf3bcd91f7083c169 /svx
parent2e4157369a7b5127e4a3b312c944a3044b36845a (diff)
WaE: C4805: unsafe mix of type 'bool' and type 'sal_Bool'
Change-Id: Ia622d25a454eb2fe1928e095c635ad4655032f15
Diffstat (limited to 'svx')
-rw-r--r--svx/source/fmcomp/gridctrl.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/fmcomp/gridctrl.cxx b/svx/source/fmcomp/gridctrl.cxx
index 07a41bee36dc..69398e8ff49c 100644
--- a/svx/source/fmcomp/gridctrl.cxx
+++ b/svx/source/fmcomp/gridctrl.cxx
@@ -2539,7 +2539,7 @@ void DbGridControl::AppendNew()
void DbGridControl::SetDesignMode(bool bMode)
{
- if (IsDesignMode() != bMode)
+ if ((bool) IsDesignMode() != bMode)
{
// adjust Enable/Disable for design mode so that the headerbar remains configurable
if (bMode)