diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-01-03 15:42:55 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-01-03 15:42:55 +0200 |
commit | 1cedea0eef581bccb5767bca49875261d2308326 (patch) | |
tree | 52fd1f3c52d5754e736888be4c9b578f76d8ad07 /chart2 | |
parent | 9cf662e46b30f46bdbc473b0e605be8cfca1d4af (diff) |
WaE: C4805: '!=' : unsafe mix of type 'sal_Bool' and type 'bool' in operation
Change-Id: If67bcfa3f3faaf7ed48493a0f8281fba70431abf
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/source/controller/dialogs/tp_RangeChooser.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chart2/source/controller/dialogs/tp_RangeChooser.cxx b/chart2/source/controller/dialogs/tp_RangeChooser.cxx index d8f8336e1ad3..4f86d5366978 100644 --- a/chart2/source/controller/dialogs/tp_RangeChooser.cxx +++ b/chart2/source/controller/dialogs/tp_RangeChooser.cxx @@ -36,7 +36,7 @@ namespace PushButton& rChooserButton, bool bShow) { - if( rChooserButton.IsVisible() != bShow ) + if( rChooserButton.IsVisible() != (sal_Bool) bShow ) { rChooserButton.Show( bShow ); } |