diff options
author | Jan Holesovsky <kendy@collabora.com> | 2014-05-09 20:59:53 +0200 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2014-05-09 22:28:44 +0200 |
commit | 261b1ad80aae0dd9aba50190a4cf99011cc18fb9 (patch) | |
tree | f37e5e85296e64957d743671a2675b1909f1b173 /svx/source/form | |
parent | dd484af7cfb472a39c9afebc6dad9ea28d1224c4 (diff) |
'!= false' is redundant, and confusing - kill it.
Change-Id: I1a52b9ce7b590e8cf274a2daaa1c55cfc1efe48b
Diffstat (limited to 'svx/source/form')
-rw-r--r-- | svx/source/form/formcontroller.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/form/formcontroller.cxx b/svx/source/form/formcontroller.cxx index 2f4903db5c01..fd872b4e5c61 100644 --- a/svx/source/form/formcontroller.cxx +++ b/svx/source/form/formcontroller.cxx @@ -315,7 +315,7 @@ namespace { bool bInputRequired = true; OSL_VERIFY( _rxControlModel->getPropertyValue( FM_PROP_INPUT_REQUIRED ) >>= bInputRequired ); - return ( bInputRequired != false ); + return bInputRequired; } void lcl_resetColumnControlInfo( ColumnInfo& _rColInfo ) |