Add virtual destructors, fix warnings

This commit is contained in:
Jan Käberich 2022-12-15 00:00:15 +01:00
parent 4568be8ff4
commit fe340ac620
17 changed files with 16 additions and 49 deletions

View file

@ -46,9 +46,9 @@
SpectrumAnalyzer::SpectrumAnalyzer(AppWindow *window, QString name)
: Mode(window, name, "SA"),
firstPointTime(0),
central(new QScrollArea),
tiles(new TileWidget(traceModel, window)),
firstPointTime(0)
tiles(new TileWidget(traceModel, window))
{
central->setWidget(tiles);
central->setWidgetResizable(true);