diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-04-24 10:46:40 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-04-24 12:22:02 +0200 |
commit | f00be42dbf3f9238313a914818cbee9edf708ffa (patch) | |
tree | 9681af313f9cc2a20e535829b85a7c767001e70c /sw | |
parent | 8472de571c720934cb9b885565fe5100b475c984 (diff) |
sw: pointless cast
Change-Id: I7cd1d31765d8183a064f5917cac317fcd12c1428
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/core/layout/wsfrm.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/core/layout/wsfrm.cxx b/sw/source/core/layout/wsfrm.cxx index 200a3fa8807b..faf7243d9113 100644 --- a/sw/source/core/layout/wsfrm.cxx +++ b/sw/source/core/layout/wsfrm.cxx @@ -655,7 +655,7 @@ void SwFrm::InsertGroupBefore( SwFrm* pParent, SwFrm* pBehind, SwFrm* pSct ) else { OSL_ENSURE( pSct->IsSctFrm(), "InsertGroup: For SectionFrms only" ); - SwFrm::DestroyFrm(static_cast<SwSectionFrm*>(pSct)); + SwFrm::DestroyFrm(pSct); } } else |