Fix ordering of class constructor init list

This commit is contained in:
Ian McInerney 2021-06-03 18:08:29 +01:00
parent 23f8851409
commit 2de010f08b
1 changed files with 4 additions and 4 deletions

View File

@ -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 );