summaryrefslogtreecommitdiffstats
path: root/Project/GeneralPropertiesForm.cpp
blob: 169c20c407855e88ab665c89091f3b911de0ab49 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;
}