summaryrefslogtreecommitdiff
path: root/cui/source
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@suse.com>2013-01-03 17:01:00 +0200
committerTor Lillqvist <tlillqvist@suse.com>2013-01-03 17:02:00 +0200
commit844095f29af4ea2d9b42e1231456c4556a8f96f3 (patch)
tree8cef5519b9a6446d5fa5fbcbddf5394cfd28f17c /cui/source
parent446ac227bf3477ac3041d87bd0d880c3d61f4208 (diff)
WaE: unsafe mix of type 'bool' and type 'sal_Bool'
Change-Id: I927f7ea5cae396bb10ffc2568ec68ae69b8f3f82
Diffstat (limited to 'cui/source')
-rw-r--r--cui/source/dialogs/SpellDialog.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/cui/source/dialogs/SpellDialog.cxx b/cui/source/dialogs/SpellDialog.cxx
index 5048a6720b0f..b4771dec75a3 100644
--- a/cui/source/dialogs/SpellDialog.cxx
+++ b/cui/source/dialogs/SpellDialog.cxx
@@ -370,7 +370,7 @@ void SpellDialog::UpdateBoxes_Impl()
m_pExplainLink->Hide();
}
- if (bOldShowExplain != m_pExplainLink->IsVisible() || bOldShowGrammar != m_pCheckGrammarCB->IsVisible())
+ if (bOldShowExplain != (bool) m_pExplainLink->IsVisible() || bOldShowGrammar != (bool) m_pCheckGrammarCB->IsVisible())
setInitialLayoutSize();
}
// -----------------------------------------------------------------------