Fix LEGACYFILEDLG_NEW_PROJECT build error

This commit is contained in:
Marek Roszko 2022-06-11 23:45:22 -04:00
parent 0ba44f3397
commit bccc2f5792
1 changed files with 4 additions and 1 deletions

View File

@ -42,7 +42,10 @@ public:
bool CreateNewDir() const { return m_cbCreateDir->GetValue(); }
static wxWindow* Create( wxWindow* aParent ) { return new DIR_CHECKBOX( aParent ); }
static wxWindow* Create( wxWindow* aParent )
{
return new LEGACYFILEDLG_NEW_PROJECT( aParent );
}
protected:
wxCheckBox* m_cbCreateDir;