mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2025-09-14 02:03:12 +02:00
Fix cross-platform issue.
This commit is contained in:
parent
6b6d689232
commit
be6683b8b7
@ -156,7 +156,7 @@ void PCB_CALCULATOR_FRAME::OnUpdateUI( wxUpdateUIEvent& event )
|
||||
wxCommandEvent event2( wxEVT_RADIOBUTTON );
|
||||
event2.SetEventObject( m_TranslineSelection );
|
||||
event2.SetInt( m_currTransLineType );
|
||||
m_TranslineSelection->ProcessCommand( event2 );
|
||||
m_TranslineSelection->Command( event2 );
|
||||
|
||||
for( int i = 0; i < m_attenuator_list.size(); ++i )
|
||||
{
|
||||
@ -164,7 +164,7 @@ void PCB_CALCULATOR_FRAME::OnUpdateUI( wxUpdateUIEvent& event )
|
||||
{
|
||||
event2.SetEventObject( m_AttenuatorsSelection );
|
||||
event2.SetInt( i );
|
||||
m_AttenuatorsSelection->ProcessCommand( event2 );
|
||||
m_AttenuatorsSelection->Command( event2 );
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user