[vlc-devel] commit: Fixed uninitialized value. (Laurent Aimar )

git version control git at videolan.org
Mon Aug 4 20:29:21 CEST 2008


vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Sun Aug  3 22:39:44 2008 +0200| [14eaeec39c07a8eaa6fe1b9aadcae5d9b56ff3cf] | committer: Laurent Aimar 

Fixed uninitialized value.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=14eaeec39c07a8eaa6fe1b9aadcae5d9b56ff3cf
---

 modules/gui/qt4/util/input_slider.cpp |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/modules/gui/qt4/util/input_slider.cpp b/modules/gui/qt4/util/input_slider.cpp
index dc81a95..07d149a 100644
--- a/modules/gui/qt4/util/input_slider.cpp
+++ b/modules/gui/qt4/util/input_slider.cpp
@@ -47,6 +47,7 @@ InputSlider::InputSlider( Qt::Orientation q,QWidget *_parent ) :
     setSingleStep( 2 );
     setPageStep( 10 );
     setTracking( true );
+    setPosition( 0.0, 0, 0 );
     secstotimestr( psz_length, 0 );
     CONNECT( this, valueChanged(int), this, userDrag( int ) );
 }




More information about the vlc-devel mailing list