]> git.sesse.net Git - vlc/commitdiff
Qt4: kill an uninitialized warning.
authorJean-Baptiste Kempf <jb@videolan.org>
Thu, 9 Oct 2008 15:56:45 +0000 (17:56 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Wed, 15 Oct 2008 00:07:53 +0000 (02:07 +0200)
modules/gui/qt4/util/input_slider.cpp

index d1c432fd8ecae0478daa7e48748d2a8e9ce7c425..b9b26f610fb53b28e2663f8083de1652a473d457 100644 (file)
@@ -141,6 +141,7 @@ SoundSlider::SoundSlider( QWidget *_parent, int _i_step, bool b_hard,
     setRange( SOUNDMIN, b_hard ? (2 * SOUNDMAX) : SOUNDMAX  );
     setMouseTracking( true );
     b_sliding = false;
+    b_outside = true;
 
     pixOutside = QPixmap( ":/volslide-outside" );