Cleanup redundant type casting
This commit is contained in:
parent
b6f64815f4
commit
e2853862e5
|
@ -280,14 +280,11 @@ static void selectAllInTextCtrls( wxWindowList& children )
|
||||||
{
|
{
|
||||||
for( wxWindow* child : children )
|
for( wxWindow* child : children )
|
||||||
{
|
{
|
||||||
wxTextCtrl* childTextCtrl = dynamic_cast<wxTextCtrl*>( child );
|
if( auto childTextCtrl = dynamic_cast<wxTextCtrl*>( child ) )
|
||||||
if( childTextCtrl )
|
|
||||||
{
|
{
|
||||||
wxTextEntry* asTextEntry = dynamic_cast<wxTextEntry*>( childTextCtrl );
|
|
||||||
|
|
||||||
// Respect an existing selection
|
// Respect an existing selection
|
||||||
if( asTextEntry->GetStringSelection().IsEmpty() )
|
if( childTextCtrl->GetStringSelection().IsEmpty() )
|
||||||
asTextEntry->SelectAll();
|
childTextCtrl->SelectAll();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
selectAllInTextCtrls( child->GetChildren() );
|
selectAllInTextCtrls( child->GetChildren() );
|
||||||
|
|
|
@ -587,10 +587,10 @@ wxString PANEL_SETUP_LAYERS::GetLayerName( LAYER_NUM aLayer )
|
||||||
{
|
{
|
||||||
wxControl* control = getName( aLayer );
|
wxControl* control = getName( aLayer );
|
||||||
|
|
||||||
if( dynamic_cast<wxTextCtrl*>( control ) )
|
if( auto textCtl = dynamic_cast<wxTextCtrl*>( control ) )
|
||||||
return static_cast<wxTextCtrl*>( control )->GetValue().Trim();
|
return textCtl->GetValue().Trim();
|
||||||
else
|
else
|
||||||
return static_cast<wxStaticText*>( control )->GetLabel();
|
return control->GetLabel();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1046,9 +1046,8 @@ int PCBNEW_CONTROL::UpdateMessagePanel( const TOOL_EVENT& aEvent )
|
||||||
msgItems.emplace_back( MSG_PANEL_ITEM( _( "Selected Items" ), msg, DARKCYAN ) );
|
msgItems.emplace_back( MSG_PANEL_ITEM( _( "Selected Items" ), msg, DARKCYAN ) );
|
||||||
m_frame->SetMsgPanel( msgItems );
|
m_frame->SetMsgPanel( msgItems );
|
||||||
}
|
}
|
||||||
else if( dynamic_cast<FOOTPRINT_EDIT_FRAME*>( m_frame ) )
|
else if( auto editFrame = dynamic_cast<FOOTPRINT_EDIT_FRAME*>( m_frame ) )
|
||||||
{
|
{
|
||||||
FOOTPRINT_EDIT_FRAME* editFrame = static_cast<FOOTPRINT_EDIT_FRAME*>( m_frame );
|
|
||||||
MODULE* footprint = (MODULE*) editFrame->GetModel();
|
MODULE* footprint = (MODULE*) editFrame->GetModel();
|
||||||
|
|
||||||
if( !footprint )
|
if( !footprint )
|
||||||
|
|
Loading…
Reference in New Issue