summaryrefslogtreecommitdiffstats
path: root/desktop-widgets/simplewidgets.cpp
diff options
context:
space:
mode:
authorGravatar Jan Mulder <jlmulder@xs4all.nl>2017-12-28 19:32:05 +0100
committerGravatar Dirk Hohndel <dirk@hohndel.org>2017-12-29 09:14:20 -0800
commitf057dd46ed06ff699b299c9fe8805c9fe721f91d (patch)
tree107240e7bc2ea1f00944de1aab2b9b2bfbb80dc6 /desktop-widgets/simplewidgets.cpp
parentba813483dd66ec7d222723377f5002edc2e4f369 (diff)
downloadsubsurface-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.cpp2
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 *)));