Slightly simplify radio buttons creation in the unit test

No real changes, just add a temporary variable for the parent and use
more useful (and shorter) labels for the buttons.
This commit is contained in:
Vadim Zeitlin
2019-02-02 14:50:31 +01:00
parent 10b35c22f5
commit d403c9ecce

View File

@@ -105,22 +105,20 @@ void RadioButtonTestCase::Value()
void RadioButtonTestCase::Group() void RadioButtonTestCase::Group()
{ {
//Add another button to the first group and create another of two buttons wxWindow* const parent = wxTheApp->GetTopWindow();
wxRadioButton* g1radio0 = new wxRadioButton(wxTheApp->GetTopWindow(),
wxID_ANY, "wxRadioButton",
wxDefaultPosition,
wxDefaultSize, wxRB_GROUP);
wxRadioButton* g1radio1 = new wxRadioButton(wxTheApp->GetTopWindow(), // Create two different radio groups.
wxID_ANY, "wxRadioButton"); wxRadioButton* g1radio0 = new wxRadioButton(parent, wxID_ANY, "radio 1.0",
wxDefaultPosition, wxDefaultSize,
wxRB_GROUP);
wxRadioButton* g2radio0 = new wxRadioButton(wxTheApp->GetTopWindow(), wxRadioButton* g1radio1 = new wxRadioButton(parent, wxID_ANY, "radio 1.1");
wxID_ANY, "wxRadioButton",
wxDefaultPosition,
wxDefaultSize, wxRB_GROUP);
wxRadioButton* g2radio1 = new wxRadioButton(wxTheApp->GetTopWindow(), wxRadioButton* g2radio0 = new wxRadioButton(parent, wxID_ANY, "radio 2.0",
wxID_ANY, "wxRadioButton"); wxDefaultPosition, wxDefaultSize,
wxRB_GROUP);
wxRadioButton* g2radio1 = new wxRadioButton(parent, wxID_ANY, "radio 2.1");
g1radio0->SetValue(true); g1radio0->SetValue(true);
g2radio0->SetValue(true); g2radio0->SetValue(true);