diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-02-28 12:54:00 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-02-28 12:54:00 +0200 |
commit | 514f2c2dfa1ce32293622bbbcd3521f97d5c60ef (patch) | |
tree | 2d964221f95497bc789d2625e6be5ee350c8b045 /svx/source/fmcomp | |
parent | 7c50556cd88e54726d03479ea852d2ea07497868 (diff) |
WaE: implicit conversion of literal of type 'sal_Bool' to 'bool'
Change-Id: Icf1b8aa2c228daf8d9719616a6a91c5d6bef8449
Diffstat (limited to 'svx/source/fmcomp')
-rw-r--r-- | svx/source/fmcomp/gridcell.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/fmcomp/gridcell.cxx b/svx/source/fmcomp/gridcell.cxx index 55fae787fcf5..402e20364419 100644 --- a/svx/source/fmcomp/gridcell.cxx +++ b/svx/source/fmcomp/gridcell.cxx @@ -2903,7 +2903,7 @@ void DbFilterField::Init( Window& rParent, const Reference< XRowSet >& xCursor ) // filter cells are never readonly Edit* pAsEdit = dynamic_cast< Edit* >( m_pWindow ); if ( pAsEdit ) - pAsEdit->SetReadOnly( sal_False ); + pAsEdit->SetReadOnly( false ); } |