| 936 |
|
|
| 937 |
|
EVT_RADIOBUTTON( NoSep_RadioButton, MainWindow::OnNoSepRadioButtonSelected ) |
| 938 |
|
|
| 939 |
< |
EVT_RADIOBUTTON( Seperated_RadioButton, MainWindow::OnSeperatedRadioButtonSelected ) |
| 939 |
> |
EVT_RADIOBUTTON( Separated_RadioButton, MainWindow::OnSeparatedRadioButtonSelected ) |
| 940 |
|
|
| 941 |
|
EVT_RADIOBUTTON( Complete_RadioButton, MainWindow::OnCompleteRadioButtonSelected ) |
| 942 |
|
|
| 1021 |
|
OptionsPanel = NULL; |
| 1022 |
|
SepRadio = NULL; |
| 1023 |
|
NoSepRadio = NULL; |
| 1024 |
< |
SeperatedRadio = NULL; |
| 1024 |
> |
SeparatedRadio = NULL; |
| 1025 |
|
CompleteRadio = NULL; |
| 1026 |
|
ReglobalizeButton = NULL; |
| 1027 |
|
////@end MainWindow member initialisation |
| 1179 |
|
wxBoxSizer* itemBoxSizer30 = new wxBoxSizer(wxVERTICAL); |
| 1180 |
|
itemBoxSizer25->Add(itemBoxSizer30, 0, wxGROW|wxALL, 5); |
| 1181 |
|
|
| 1182 |
< |
SeperatedRadio = new wxRadioButton( OptionsPanel, Seperated_RadioButton, _("Separated Level0"), wxDefaultPosition, wxDefaultSize, wxRB_GROUP ); |
| 1183 |
< |
SeperatedRadio->SetValue(false); |
| 1184 |
< |
SeperatedRadio->SetName(_T("Seperated_RadioButton")); |
| 1185 |
< |
itemBoxSizer30->Add(SeperatedRadio, 0, wxALIGN_LEFT|wxALL, 5); |
| 1182 |
> |
SeparatedRadio = new wxRadioButton( OptionsPanel, Separated_RadioButton, _("Separated Level0"), wxDefaultPosition, wxDefaultSize, wxRB_GROUP ); |
| 1183 |
> |
SeparatedRadio->SetValue(false); |
| 1184 |
> |
SeparatedRadio->SetName(_T("Separated_RadioButton")); |
| 1185 |
> |
itemBoxSizer30->Add(SeparatedRadio, 0, wxALIGN_LEFT|wxALL, 5); |
| 1186 |
|
|
| 1187 |
|
CompleteRadio = new wxRadioButton( OptionsPanel, Complete_RadioButton, _("Complete Level0"), wxDefaultPosition, wxDefaultSize, 0 ); |
| 1188 |
|
CompleteRadio->SetValue(false); |
| 1637 |
|
|
| 1638 |
|
|
| 1639 |
|
/* |
| 1640 |
< |
* wxEVT_COMMAND_RADIOBUTTON_SELECTED event handler for Seperated_RadioButton |
| 1640 |
> |
* wxEVT_COMMAND_RADIOBUTTON_SELECTED event handler for Separated_RadioButton |
| 1641 |
|
*/ |
| 1642 |
|
|
| 1643 |
< |
void MainWindow::OnSeperatedRadioButtonSelected( wxCommandEvent& event ) |
| 1643 |
> |
/*void MainWindow::OnSeparatedRadioButtonSelected( wxCommandEvent& event ) |
| 1644 |
|
{ |
| 1645 |
< |
////@begin wxEVT_COMMAND_RADIOBUTTON_SELECTED event handler for Seperated_RadioButton in MainWindow. |
| 1645 |
> |
////@begin wxEVT_COMMAND_RADIOBUTTON_SELECTED event handler for Separated_RadioButton in MainWindow. |
| 1646 |
|
// Before editing this code, remove the block markers. |
| 1647 |
|
event.Skip(); |
| 1648 |
< |
////@end wxEVT_COMMAND_RADIOBUTTON_SELECTED event handler for Seperated_RadioButton in MainWindow. |
| 1649 |
< |
} |
| 1648 |
> |
////@end wxEVT_COMMAND_RADIOBUTTON_SELECTED event handler for Separated_RadioButton in MainWindow. |
| 1649 |
> |
}*/ |
| 1650 |
|
|