diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-08-11 21:01:35 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-08-11 21:04:41 +0100 |
commit | 7b09e2a90cd8b69b466601f70d0513cfe2862e7c (patch) | |
tree | cbb732146d9c643175add2f658921d8de3e9b60b /svx | |
parent | cf58196691785d284fcffc653626fcf135c9ba69 (diff) |
cppcheck: nullPointerRedundantCheck
Change-Id: I8f893fe86d1f09a6ed7256830bca5599f94a187b
Diffstat (limited to 'svx')
-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 b6577ae08648..1ff2e0ec2825 100644 --- a/svx/source/unodraw/unoshtxt.cxx +++ b/svx/source/unodraw/unoshtxt.cxx @@ -643,7 +643,7 @@ SvxTextForwarder* SvxTextEditSourceImpl::GetBackgroundTextForwarder() mpOutliner->SetText( *pOutlinerParaObject ); // #91254# put text to object and set EmptyPresObj to FALSE - if( mpText && bOwnParaObj && pOutlinerParaObject && mpObject->IsEmptyPresObj() && pTextObj->IsReallyEdited() ) + if( mpText && bOwnParaObj && mpObject->IsEmptyPresObj() && pTextObj->IsReallyEdited() ) { mpObject->SetEmptyPresObj( false ); static_cast< SdrTextObj* >( mpObject)->NbcSetOutlinerParaObjectForText( pOutlinerParaObject, mpText ); |