Kaydet (Commit) a9ae25fd authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1158492 Uninitialized scalar field

Change-Id: Ia31521ecef3cc7ec49289de9583e50baf106b050
üst db72a45a
......@@ -257,8 +257,9 @@ class ProgressBarTimer : Timer
double mfPosition;
ISegmentProgressBarRef mxWrapped;
public:
ProgressWrapper( const ISegmentProgressBarRef &xRef ) :
mxWrapped( xRef )
ProgressWrapper(const ISegmentProgressBarRef &xRef)
: mfPosition(0.0)
, mxWrapped(xRef)
{
}
virtual ~ProgressWrapper() {}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment