summaryrefslogtreecommitdiff
path: root/sw/source/core/layout/atrfrm.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-05-29 12:05:00 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-05-29 12:05:00 +0200
commit148953244fc8d741ef84ef777ad566ae80edd28a (patch)
tree807234f01238659c42e87bd1975e6c091f5e89e0 /sw/source/core/layout/atrfrm.cxx
parent5dc811daf9ea03dfccabec3a80a44bd12fa62d66 (diff)
loplugin:redundantcast: const_cast to same type
Change-Id: I7cb919140539d0d573b5fbf786a6041843c2388a
Diffstat (limited to 'sw/source/core/layout/atrfrm.cxx')
-rw-r--r--sw/source/core/layout/atrfrm.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/layout/atrfrm.cxx b/sw/source/core/layout/atrfrm.cxx
index d0005711da16..93d139c25f3f 100644
--- a/sw/source/core/layout/atrfrm.cxx
+++ b/sw/source/core/layout/atrfrm.cxx
@@ -3468,7 +3468,7 @@ bool IsFlyFrameFormatInHeader(const SwFrameFormat& rFormat)
const SwFlyFrameFormat* pFlyFrameFormat = dynamic_cast<const SwFlyFrameFormat*>(&rFormat);
if (!pFlyFrameFormat)
return false;
- SwFlyFrm* pFlyFrm = const_cast<SwFlyFrm*>(pFlyFrameFormat->GetFrm());
+ SwFlyFrm* pFlyFrm = pFlyFrameFormat->GetFrm();
if (!pFlyFrm) // fdo#54648: "hidden" drawing object has no layout frame
{
return false;