diff widgets/ItemEditDialog.cpp @ 857:44675ab217a3

Fix some (probably benign) uninitialised members (from coverity scan)
author Chris Cannam
date Wed, 03 Sep 2014 12:10:27 +0100
parents e4773943c9c1
children e0f08e108064
line wrap: on
line diff
--- a/widgets/ItemEditDialog.cpp	Wed Sep 03 12:08:35 2014 +0100
+++ b/widgets/ItemEditDialog.cpp	Wed Sep 03 12:10:27 2014 +0100
@@ -32,6 +32,9 @@
                                QString valueUnits, QWidget *parent) :
     QDialog(parent),
     m_sampleRate(sampleRate),
+    m_defaultFrame(0),
+    m_defaultDuration(0),
+    m_defaultValue(0),
     m_frameTimeSpinBox(0),
     m_realTimeSecsSpinBox(0),
     m_realTimeUSecsSpinBox(0),