Initialize variables inside file dialog customizer classes

This commit is contained in:
Ian McInerney 2022-12-17 23:25:59 +00:00
parent 0bd39516c4
commit 2f8cc194c1
2 changed files with 9 additions and 9 deletions

View File

@ -67,12 +67,12 @@ public:
SYMBOL_SAVEAS_TYPE GetOption() const { return m_option; }
private:
SYMBOL_SAVEAS_TYPE m_option;
SYMBOL_SAVEAS_TYPE m_option = SYMBOL_SAVEAS_TYPE::NORMAL_SAVE_AS;
wxFileDialogRadioButton* m_simpleSaveAs;
wxFileDialogRadioButton* m_replaceTableEntry;
wxFileDialogRadioButton* m_addGlobalTableEntry;
wxFileDialogRadioButton* m_addProjectTableEntry;
wxFileDialogRadioButton* m_simpleSaveAs = nullptr;
wxFileDialogRadioButton* m_replaceTableEntry = nullptr;
wxFileDialogRadioButton* m_addGlobalTableEntry = nullptr;
wxFileDialogRadioButton* m_addProjectTableEntry = nullptr;
wxDECLARE_NO_COPY_CLASS( SYMBOL_FILEDLG_SAVE_AS );
};

View File

@ -42,9 +42,9 @@ public:
bool GetCreateNewDir() const { return m_createNewDir; }
private:
bool m_createNewDir;
bool m_createNewDir = true;
wxFileDialogCheckBox* m_cb;
wxFileDialogCheckBox* m_cb = nullptr;
wxDECLARE_NO_COPY_CLASS( FILEDLG_NEW_PROJECT );
};