mirror of
https://github.com/jankae/LibreVNA.git
synced 2026-04-21 06:13:41 +00:00
Fixing variable initializations part 1
This commit is contained in:
parent
796a8cb3f9
commit
3a9d169d46
18 changed files with 47 additions and 90 deletions
|
|
@ -46,8 +46,10 @@
|
|||
|
||||
SpectrumAnalyzer::SpectrumAnalyzer(AppWindow *window, QString name)
|
||||
: Mode(window, name, "SA"),
|
||||
central(new TileWidget(traceModel, window))
|
||||
central(new TileWidget(traceModel, window)),
|
||||
firstPointTime(0)
|
||||
{
|
||||
changingSettings = false;
|
||||
averages = 1;
|
||||
singleSweep = false;
|
||||
settings = {};
|
||||
|
|
@ -55,6 +57,12 @@ SpectrumAnalyzer::SpectrumAnalyzer(AppWindow *window, QString name)
|
|||
normalize.measuring = false;
|
||||
normalize.points = 0;
|
||||
normalize.dialog.reset();
|
||||
normalize.f_start = 0;
|
||||
normalize.f_stop = 0;
|
||||
normalize.points = 0;
|
||||
normalize.Level = nullptr;
|
||||
normalize.measure = nullptr;
|
||||
normalize.enable = nullptr;
|
||||
|
||||
traceModel.setSource(TraceModel::DataSource::SA);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue