diff options
author | Tor Lillqvist <tlillqvist@suse.com> | 2011-10-05 15:44:31 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2011-10-05 17:39:05 +0300 |
commit | e5f71ca7c27259360a401d94ed6a53038608b941 (patch) | |
tree | ac129b13674fd5461b055e53a83c8888d6e00bc0 /svtools | |
parent | ed1de7f939d6aed75b115359515fadafa810c76c (diff) |
WaE: '==' : unsafe mix of type 'sal_Bool' and type 'bool' in operation
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/brwbox/datwin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/brwbox/datwin.cxx b/svtools/source/brwbox/datwin.cxx index f944908c269d..3ee8c7d7a55f 100644 --- a/svtools/source/brwbox/datwin.cxx +++ b/svtools/source/brwbox/datwin.cxx @@ -690,7 +690,7 @@ BrowserExecuteDropEvent::BrowserExecuteDropEvent( BrowserDataWin *pWindow, const void BrowserDataWin::SetUpdateMode( sal_Bool bMode ) { DBG_ASSERT( !bUpdateMode || aInvalidRegion.empty(), "invalid region not empty" ); - if ( bMode == bUpdateMode ) + if ( (bool) bMode == bUpdateMode ) return; bUpdateMode = bMode; |