]> git.sesse.net Git - vlc/commitdiff
Qt4 - remove unusefull debug.
authorJean-Baptiste Kempf <jb@videolan.org>
Sat, 22 Dec 2007 01:08:21 +0000 (01:08 +0000)
committerJean-Baptiste Kempf <jb@videolan.org>
Sat, 22 Dec 2007 01:08:21 +0000 (01:08 +0000)
modules/gui/qt4/components/interface_widgets.cpp
modules/gui/qt4/components/interface_widgets.hpp

index c29d5a77442e55e328b870cd2421c8ca9ae7839a..06194ac2ac84c989d3346a7434ef1ef26bdfa864 100644 (file)
@@ -621,21 +621,12 @@ ControlsWidget::ControlsWidget( intf_thread_t *_p_i,
                               VOLUME_MAX / (AOUT_VOLUME_MAX/2) );
 
     /* Volume control connection */
-    //resize( QSize( 300, 60 ) );
     CONNECT( volumeSlider, valueChanged( int ), this, updateVolume( int ) );
-    msg_Dbg( p_intf, "controls size: %i - %i", size().width(), size().height() );
 }
 
 ControlsWidget::~ControlsWidget()
 {}
 
-/*
-QSize ControlsWidget::sizeHint() const
-{
-    return QSize( 300, 50 );
-}
-*/
-
 void ControlsWidget::stop()
 {
     THEMIM->stop();
index 5bb8505e695cbdea1ee138cb09ed588304883598..e636989ac45387b1ae4807d9258f423ae2db4efa 100644 (file)
@@ -149,7 +149,6 @@ class ControlsWidget : public QFrame
 public:
     /* p_intf, advanced control visible or not, blingbling or not */
     ControlsWidget( intf_thread_t *, MainInterface*, bool, bool );
-//    QSize sizeHint() const;
     virtual ~ControlsWidget();
 
     QPushButton *playlistButton;