diff options
author | Jan Mulder <jlmulder@xs4all.nl> | 2017-12-28 19:32:05 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-12-29 09:14:20 -0800 |
commit | f057dd46ed06ff699b299c9fe8805c9fe721f91d (patch) | |
tree | 107240e7bc2ea1f00944de1aab2b9b2bfbb80dc6 /desktop-widgets/simplewidgets.cpp | |
parent | ba813483dd66ec7d222723377f5002edc2e4f369 (diff) | |
download | subsurface-f057dd46ed06ff699b299c9fe8805c9fe721f91d.tar.gz |
cleanup: Uninitialized scalar field
CID 45171
Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
Diffstat (limited to 'desktop-widgets/simplewidgets.cpp')
-rw-r--r-- | desktop-widgets/simplewidgets.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop-widgets/simplewidgets.cpp b/desktop-widgets/simplewidgets.cpp index f8cd96943..af37b5154 100644 --- a/desktop-widgets/simplewidgets.cpp +++ b/desktop-widgets/simplewidgets.cpp @@ -215,7 +215,7 @@ void SetpointDialog::buttonClicked(QAbstractButton *button) } SetpointDialog::SetpointDialog(QWidget *parent) : QDialog(parent), - dc(0) + dc(0), time(0) { ui.setupUi(this); connect(ui.buttonBox, SIGNAL(clicked(QAbstractButton *)), this, SLOT(buttonClicked(QAbstractButton *))); |