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 ) :
|
||||
DIALOG_SHIM( aParent, wxID_ANY, aTitle, wxDefaultPosition, wxDefaultSize,
|
||||
wxDEFAULT_DIALOG_STYLE | wxRESIZE_BORDER ),
|
||||
m_auxiliaryButton( nullptr ),
|
||||
m_resetButton( nullptr ),
|
||||
m_cancelButton( nullptr ),
|
||||
m_title( aTitle ),
|
||||
m_dirty( false ),
|
||||
m_errorCtrl( nullptr ),
|
||||
m_errorRow( 0 ),
|
||||
m_errorCol( 0 ),
|
||||
m_auxiliaryButton( nullptr ),
|
||||
m_resetButton( nullptr ),
|
||||
m_cancelButton( nullptr )
|
||||
m_errorCol( 0 )
|
||||
{
|
||||
auto mainSizer = new wxBoxSizer( wxVERTICAL );
|
||||
SetSizer( mainSizer );
|
||||
|
|
Loading…
Reference in New Issue