summaryrefslogtreecommitdiff
path: root/svx/source/form
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-07-08 16:40:48 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-07-08 16:47:31 +0200
commit9af0403ddc024b843c214eb43923692fb1dfd9eb (patch)
tree960af51e28ced1659d2ecd5e5242731b5e0dbefe /svx/source/form
parent92c517b9f9043ecea67128b097b49e6ae7c46683 (diff)
loplugin:redundantcast: redundant static_casts in svx
Change-Id: I50ddaa998d28de04416f6406cc165fa863594a5c
Diffstat (limited to 'svx/source/form')
-rw-r--r--svx/source/form/navigatortree.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/form/navigatortree.cxx b/svx/source/form/navigatortree.cxx
index afe7d11d6845..29a89b04bdda 100644
--- a/svx/source/form/navigatortree.cxx
+++ b/svx/source/form/navigatortree.cxx
@@ -1238,7 +1238,7 @@ namespace svxform
void NavigatorTree::ModelHasRemoved( SvTreeListEntry* _pEntry )
{
- SvTreeListEntry* pTypedEntry = static_cast< SvTreeListEntry* >( _pEntry );
+ SvTreeListEntry* pTypedEntry = _pEntry;
if ( doingKeyboardCut() )
m_aCutEntries.erase( pTypedEntry );