diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-05-11 12:51:10 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-05-11 12:51:10 +0200 |
commit | 9672e6c81e1ded79ff964d0a0d667e4e172c4475 (patch) | |
tree | 08fcf1368588060fe17a533ef9ae8b1253a8acc4 /svx/source/svdraw/svdedxv.cxx | |
parent | 47df2b2a2e13e44e45861d1e03c80632ae6777a5 (diff) |
loplugin:cstylecast: nop between pointer types of exactly same spelling
Change-Id: I76a990da8aba9b62b3925d9632150930656e510f
Diffstat (limited to 'svx/source/svdraw/svdedxv.cxx')
-rw-r--r-- | svx/source/svdraw/svdedxv.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/svdraw/svdedxv.cxx b/svx/source/svdraw/svdedxv.cxx index 4899c4b97947..6c116cf58709 100644 --- a/svx/source/svdraw/svdedxv.cxx +++ b/svx/source/svdraw/svdedxv.cxx @@ -919,7 +919,7 @@ SdrEndTextEditKind SdrObjEditView::SdrEndTextEdit(bool bDontDeleteReally) pTEObj->EndTextEdit(*pTEOutliner); - if( (pTEObj->GetRotateAngle() != 0) || (pTEObj && pTEObj->ISA(SdrTextObj) && ((SdrTextObj*)pTEObj)->IsFontwork()) ) + if( (pTEObj->GetRotateAngle() != 0) || (pTEObj && pTEObj->ISA(SdrTextObj) && pTEObj->IsFontwork()) ) { pTEObj->ActionChanged(); } @@ -989,7 +989,7 @@ SdrEndTextEditKind SdrObjEditView::SdrEndTextEdit(bool bDontDeleteReally) // Switch on any TextAnimation again after TextEdit if(pTEObj->ISA(SdrTextObj)) { - ((SdrTextObj*)pTEObj)->SetTextAnimationAllowed(true); + pTEObj->SetTextAnimationAllowed(true); } // #i72757# |