comparison widgets/Fader.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 1a0dfcbffaf1
children 4a578a360011
comparison
equal deleted inserted replaced
856:ee36642b9b59 857:44675ab217a3
46 QWidget(parent), 46 QWidget(parent),
47 m_withoutKnob(withoutKnob), 47 m_withoutKnob(withoutKnob),
48 m_value(1.0), 48 m_value(1.0),
49 m_peakLeft(0.0), 49 m_peakLeft(0.0),
50 m_peakRight(0.0), 50 m_peakRight(0.0),
51 m_mousePressed(false) 51 m_mousePressed(false),
52 m_mousePressX(0),
53 m_mousePressValue(0)
52 { 54 {
53 setMinimumSize(116, 23); 55 setMinimumSize(116, 23);
54 setMaximumSize(116, 23); 56 setMaximumSize(116, 23);
55 resize(116, 23); 57 resize(116, 23);
56 58