| 101 | |
| 102 | template<class T> |
| 103 | void OptionPage::Add(wxSizer *sizer, wxString const& label, T *control) { |
| 104 | sizer->Add(new wxStaticText(this, -1, label), 1, wxALIGN_CENTRE_VERTICAL); |
| 105 | sizer->Add(control, wxSizerFlags().Expand()); |
| 106 | } |
| 107 | |
| 108 | void OptionPage::CellSkip(wxFlexGridSizer *flex) { |
| 109 | flex->AddStretchSpacer(); |
no outgoing calls
no test coverage detected