Commit 14eaeec3 authored by Laurent Aimar's avatar Laurent Aimar

Fixed uninitialized value.

parent f6ab2a09
...@@ -47,6 +47,7 @@ InputSlider::InputSlider( Qt::Orientation q,QWidget *_parent ) : ...@@ -47,6 +47,7 @@ InputSlider::InputSlider( Qt::Orientation q,QWidget *_parent ) :
setSingleStep( 2 ); setSingleStep( 2 );
setPageStep( 10 ); setPageStep( 10 );
setTracking( true ); setTracking( true );
setPosition( 0.0, 0, 0 );
secstotimestr( psz_length, 0 ); secstotimestr( psz_length, 0 );
CONNECT( this, valueChanged(int), this, userDrag( int ) ); CONNECT( this, valueChanged(int), this, userDrag( int ) );
} }
......
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