diff options
Diffstat (limited to 'Project/GeneralPropertiesForm.cpp')
-rw-r--r-- | Project/GeneralPropertiesForm.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Project/GeneralPropertiesForm.cpp b/Project/GeneralPropertiesForm.cpp new file mode 100644 index 0000000..169c20c --- /dev/null +++ b/Project/GeneralPropertiesForm.cpp @@ -0,0 +1,20 @@ +#include "GeneralPropertiesForm.h" + +GeneralPropertiesForm::GeneralPropertiesForm(wxWindow* parent) + : GeneralPropertiesFormBase(parent) +{ +} + +GeneralPropertiesForm::~GeneralPropertiesForm() +{ +} + +void GeneralPropertiesForm::OnButtonOKClick(wxCommandEvent& event) +{ + if(ValidateData()) EndModal(wxID_OK); +} + +bool GeneralPropertiesForm::ValidateData() +{ + return true; +} |