| 451 | } |
| 452 | |
| 453 | ModemProperties *AppFrame::makeModemProperties(wxPanel *parent) { |
| 454 | auto *pProperties = new ModemProperties(parent, wxID_ANY); |
| 455 | pProperties->SetMinSize(wxSize(APPFRAME_MODEMPROPS_MAXSIZE, -1)); |
| 456 | pProperties->SetMaxSize(wxSize(APPFRAME_MODEMPROPS_MAXSIZE, -1)); |
| 457 | |
| 458 | ModemArgInfoList dummyInfo; |
| 459 | pProperties->initProperties(dummyInfo, nullptr); |
| 460 | pProperties->updateTheme(); |
| 461 | return pProperties; |
| 462 | } |
| 463 | |
| 464 | ModeSelectorCanvas *AppFrame::makeModemAdvSelectorPanel(wxPanel *parent, const wxGLAttributes &attribList) { |
| 465 | auto *pCanvas = new ModeSelectorCanvas(parent, attribList); |
nothing calls this directly
no test coverage detected