diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-27 15:29:17 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-27 15:31:02 +0200 |
commit | 61e5ba62f5f4a275d26eb7e36fa9e885774ad0cb (patch) | |
tree | b4768d4b7bec9c6806d91489f74f42ef52989341 /svx/source/unodraw | |
parent | 79faad753fab8db49582c55ef0082588ae2521a0 (diff) |
More loplugin:simplifybool
Change-Id: I8dce5186e3b95082fe5c282493424534d469cd51
Diffstat (limited to 'svx/source/unodraw')
-rw-r--r-- | svx/source/unodraw/unoshtxt.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/unodraw/unoshtxt.cxx b/svx/source/unodraw/unoshtxt.cxx index 1850e1d394f3..c87bdc10d943 100644 --- a/svx/source/unodraw/unoshtxt.cxx +++ b/svx/source/unodraw/unoshtxt.cxx @@ -237,7 +237,7 @@ SvxTextEditSourceImpl::SvxTextEditSourceImpl( SdrObject& rObject, SdrText* pText SvxTextEditSourceImpl::~SvxTextEditSourceImpl() { - DBG_ASSERT( mbIsLocked == false, "text edit source was not unlocked before dispose!" ); + DBG_ASSERT( !mbIsLocked, "text edit source was not unlocked before dispose!" ); if( mpObject ) mpObject->RemoveObjectUser( *this ); |