Fix spelling error.
Fixes https://gitlab.com/kicad/code/kicad/issues/4144
This commit is contained in:
parent
a76ddb52a0
commit
ae02835fef
|
@ -115,7 +115,7 @@ DIALOG_GLOBAL_EDIT_TEXT_AND_GRAPHICS::~DIALOG_GLOBAL_EDIT_TEXT_AND_GRAPHICS()
|
|||
g_modifyValues = m_values->GetValue();
|
||||
g_modifyOtherFields = m_otherFields->GetValue();
|
||||
g_modifyWires = m_wires->GetValue();
|
||||
g_modifyBusses = m_busses->GetValue();
|
||||
g_modifyBusses = m_buses->GetValue();
|
||||
g_modifyGlobalLabels = m_globalLabels->GetValue();
|
||||
g_modifyHierLabels = m_hierLabels->GetValue();
|
||||
g_modifySheetTitles = m_sheetTitles->GetValue();
|
||||
|
@ -144,7 +144,7 @@ bool DIALOG_GLOBAL_EDIT_TEXT_AND_GRAPHICS::TransferDataToWindow()
|
|||
m_values->SetValue( g_modifyValues );
|
||||
m_otherFields->SetValue( g_modifyOtherFields );
|
||||
m_wires->SetValue( g_modifyWires );
|
||||
m_busses->SetValue( g_modifyBusses );
|
||||
m_buses->SetValue( g_modifyBusses );
|
||||
m_globalLabels->SetValue( g_modifyGlobalLabels );
|
||||
m_hierLabels->SetValue( g_modifyHierLabels );
|
||||
m_sheetTitles->SetValue( g_modifySheetTitles );
|
||||
|
@ -395,7 +395,7 @@ void DIALOG_GLOBAL_EDIT_TEXT_AND_GRAPHICS::visitItem( const SCH_SHEET_PATH& aShe
|
|||
}
|
||||
else if( m_wires->GetValue() && aItem->IsType( wireTypes ) )
|
||||
processItem( aSheetPath, aItem );
|
||||
else if( m_busses->GetValue() && aItem->IsType( busTypes ) )
|
||||
else if( m_buses->GetValue() && aItem->IsType( busTypes ) )
|
||||
processItem( aSheetPath, aItem );
|
||||
else if( m_globalLabels->GetValue() && aItem->Type() == SCH_GLOBAL_LABEL_T )
|
||||
processItem( aSheetPath, aItem );
|
||||
|
|
|
@ -37,8 +37,8 @@ DIALOG_GLOBAL_EDIT_TEXT_AND_GRAPHICS_BASE::DIALOG_GLOBAL_EDIT_TEXT_AND_GRAPHICS_
|
|||
m_wires = new wxCheckBox( sbScope->GetStaticBox(), wxID_ANY, _("Wires && wire labels"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||
sbScope->Add( m_wires, 0, wxBOTTOM|wxRIGHT|wxLEFT, 4 );
|
||||
|
||||
m_busses = new wxCheckBox( sbScope->GetStaticBox(), wxID_ANY, _("Busses && bus labels"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||
sbScope->Add( m_busses, 0, wxBOTTOM|wxRIGHT|wxLEFT, 4 );
|
||||
m_buses = new wxCheckBox( sbScope->GetStaticBox(), wxID_ANY, _("Buses && bus labels"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||
sbScope->Add( m_buses, 0, wxBOTTOM|wxRIGHT|wxLEFT, 4 );
|
||||
|
||||
m_globalLabels = new wxCheckBox( sbScope->GetStaticBox(), wxID_ANY, _("Global labels"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||
sbScope->Add( m_globalLabels, 0, wxBOTTOM|wxRIGHT|wxLEFT, 4 );
|
||||
|
|
|
@ -379,7 +379,7 @@
|
|||
<property name="gripper">0</property>
|
||||
<property name="hidden">0</property>
|
||||
<property name="id">wxID_ANY</property>
|
||||
<property name="label">Busses && bus labels</property>
|
||||
<property name="label">Buses && bus labels</property>
|
||||
<property name="max_size"></property>
|
||||
<property name="maximize_button">0</property>
|
||||
<property name="maximum_size"></property>
|
||||
|
@ -387,7 +387,7 @@
|
|||
<property name="minimize_button">0</property>
|
||||
<property name="minimum_size"></property>
|
||||
<property name="moveable">1</property>
|
||||
<property name="name">m_busses</property>
|
||||
<property name="name">m_buses</property>
|
||||
<property name="pane_border">1</property>
|
||||
<property name="pane_position"></property>
|
||||
<property name="pane_size"></property>
|
||||
|
|
|
@ -43,7 +43,7 @@ class DIALOG_GLOBAL_EDIT_TEXT_AND_GRAPHICS_BASE : public DIALOG_SHIM
|
|||
wxCheckBox* m_values;
|
||||
wxCheckBox* m_otherFields;
|
||||
wxCheckBox* m_wires;
|
||||
wxCheckBox* m_busses;
|
||||
wxCheckBox* m_buses;
|
||||
wxCheckBox* m_globalLabels;
|
||||
wxCheckBox* m_hierLabels;
|
||||
wxCheckBox* m_sheetTitles;
|
||||
|
|
Loading…
Reference in New Issue