Fix ordering of class constructor init list
This commit is contained in:
parent
23f8851409
commit
2de010f08b
|
@ -42,14 +42,14 @@ PAGED_DIALOG::PAGED_DIALOG( wxWindow* aParent, const wxString& aTitle, bool aSho
|
||||||
const wxString& aAuxiliaryAction ) :
|
const wxString& aAuxiliaryAction ) :
|
||||||
DIALOG_SHIM( aParent, wxID_ANY, aTitle, wxDefaultPosition, wxDefaultSize,
|
DIALOG_SHIM( aParent, wxID_ANY, aTitle, wxDefaultPosition, wxDefaultSize,
|
||||||
wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER ),
|
wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER ),
|
||||||
|
m_auxiliaryButton( nullptr ),
|
||||||
|
m_resetButton( nullptr ),
|
||||||
|
m_cancelButton( nullptr ),
|
||||||
m_title( aTitle ),
|
m_title( aTitle ),
|
||||||
m_dirty( false ),
|
m_dirty( false ),
|
||||||
m_errorCtrl( nullptr ),
|
m_errorCtrl( nullptr ),
|
||||||
m_errorRow( 0 ),
|
m_errorRow( 0 ),
|
||||||
m_errorCol( 0 ),
|
m_errorCol( 0 )
|
||||||
m_auxiliaryButton( nullptr ),
|
|
||||||
m_resetButton( nullptr ),
|
|
||||||
m_cancelButton( nullptr )
|
|
||||||
{
|
{
|
||||||
auto mainSizer = new wxBoxSizer( wxVERTICAL );
|
auto mainSizer = new wxBoxSizer( wxVERTICAL );
|
||||||
SetSizer( mainSizer );
|
SetSizer( mainSizer );
|
||||||
|
|
Loading…
Reference in New Issue