| 699 | } |
| 700 | |
| 701 | SpectrumCanvas *AppFrame::makeSpectrumCanvas(wxWindow *parent, const wxGLAttributes &attribList) { |
| 702 | auto *pCanvas = new SpectrumCanvas(parent, attribList); |
| 703 | pCanvas->setShowDb(true); |
| 704 | pCanvas->setUseDBOfs(true); |
| 705 | pCanvas->setScaleFactorEnabled(true); |
| 706 | return pCanvas; |
| 707 | } |
| 708 | |
| 709 | ModeSelectorCanvas *AppFrame::makePeakHoldButton(wxWindow *parent, const wxGLAttributes &attribList) { |
| 710 | auto *pCanvas = new ModeSelectorCanvas(parent, attribList); |
nothing calls this directly
no test coverage detected