From 9af0403ddc024b843c214eb43923692fb1dfd9eb Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 8 Jul 2016 16:40:48 +0200 Subject: loplugin:redundantcast: redundant static_casts in svx Change-Id: I50ddaa998d28de04416f6406cc165fa863594a5c --- svx/source/form/navigatortree.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'svx/source/form') 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 ); -- cgit