Fix a straggler from rename.
This commit is contained in:
parent
3cf8b718f3
commit
cc9f8f5b83
|
@ -93,7 +93,7 @@ void DIALOG_LIB_NEW_SYMBOL::syncControls( bool aIsDerivedPart )
|
|||
m_staticTextUnits->Enable( !aIsDerivedPart );
|
||||
m_spinPartCount->Enable( !aIsDerivedPart );
|
||||
m_checkUnitsInterchangeable->Enable( !aIsDerivedPart );
|
||||
m_checkHasConversion->Enable( !aIsDerivedPart );
|
||||
m_checkHasAlternateBodyStyle->Enable( !aIsDerivedPart );
|
||||
m_checkIsPowerSymbol->Enable( !aIsDerivedPart );
|
||||
m_excludeFromBomCheckBox->Enable( !aIsDerivedPart );
|
||||
m_excludeFromBoardCheckBox->Enable( !aIsDerivedPart );
|
||||
|
|
|
@ -66,8 +66,8 @@ public:
|
|||
void SetPartCount( int count ) { m_spinPartCount->SetValue( count ); }
|
||||
int GetUnitCount() { return m_spinPartCount->GetValue(); }
|
||||
|
||||
void SetAlternateBodyStyle( bool enable ) { m_checkHasConversion->SetValue( enable ); }
|
||||
bool GetAlternateBodyStyle() { return m_checkHasConversion->GetValue(); }
|
||||
void SetAlternateBodyStyle( bool enable ) { m_checkHasAlternateBodyStyle->SetValue( enable ); }
|
||||
bool GetAlternateBodyStyle() { return m_checkHasAlternateBodyStyle->GetValue(); }
|
||||
|
||||
void SetPowerSymbol( bool enable ) { m_checkIsPowerSymbol->SetValue( enable ); }
|
||||
bool GetPowerSymbol() { return m_checkIsPowerSymbol->GetValue(); }
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
///////////////////////////////////////////////////////////////////////////
|
||||
// C++ code generated with wxFormBuilder (version 3.10.1-0-g8feb16b)
|
||||
// C++ code generated with wxFormBuilder (version 4.0.0-0-g0efcecf)
|
||||
// http://www.wxformbuilder.org/
|
||||
//
|
||||
// PLEASE DO *NOT* EDIT THIS FILE!
|
||||
|
@ -82,8 +82,8 @@ DIALOG_LIB_NEW_SYMBOL_BASE::DIALOG_LIB_NEW_SYMBOL_BASE( wxWindow* parent, wxWind
|
|||
|
||||
bSizer17->Add( m_checkUnitsInterchangeable, 0, wxRIGHT|wxLEFT, 5 );
|
||||
|
||||
m_checkHasConversion = new wxCheckBox( this, wxID_ANY, _("Create symbol with alternate body style (De Morgan)"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||
bSizer17->Add( m_checkHasConversion, 0, wxTOP|wxRIGHT|wxLEFT, 5 );
|
||||
m_checkHasAlternateBodyStyle = new wxCheckBox( this, wxID_ANY, _("Create symbol with alternate body style (De Morgan)"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||
bSizer17->Add( m_checkHasAlternateBodyStyle, 0, wxTOP|wxRIGHT|wxLEFT, 5 );
|
||||
|
||||
m_checkIsPowerSymbol = new wxCheckBox( this, wxID_ANY, _("Create symbol as power symbol"), wxDefaultPosition, wxDefaultSize, 0 );
|
||||
bSizer17->Add( m_checkIsPowerSymbol, 0, wxTOP|wxRIGHT|wxLEFT, 5 );
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -1,5 +1,5 @@
|
|||
///////////////////////////////////////////////////////////////////////////
|
||||
// C++ code generated with wxFormBuilder (version 3.10.1-0-g8feb16b)
|
||||
// C++ code generated with wxFormBuilder (version 4.0.0-0-g0efcecf)
|
||||
// http://www.wxformbuilder.org/
|
||||
//
|
||||
// PLEASE DO *NOT* EDIT THIS FILE!
|
||||
|
@ -54,7 +54,7 @@ class DIALOG_LIB_NEW_SYMBOL_BASE : public DIALOG_SHIM
|
|||
wxStaticText* m_staticTextUnits;
|
||||
wxSpinCtrl* m_spinPartCount;
|
||||
wxCheckBox* m_checkUnitsInterchangeable;
|
||||
wxCheckBox* m_checkHasConversion;
|
||||
wxCheckBox* m_checkHasAlternateBodyStyle;
|
||||
wxCheckBox* m_checkIsPowerSymbol;
|
||||
wxCheckBox* m_excludeFromBomCheckBox;
|
||||
wxCheckBox* m_excludeFromBoardCheckBox;
|
||||
|
|
Loading…
Reference in New Issue