]> git.sesse.net Git - vlc/commitdiff
Qt4 - comment non-existing feature.
authorJean-Baptiste Kempf <jb@videolan.org>
Fri, 18 Jan 2008 05:41:40 +0000 (05:41 +0000)
committerJean-Baptiste Kempf <jb@videolan.org>
Fri, 18 Jan 2008 05:41:40 +0000 (05:41 +0000)
modules/gui/qt4/components/interface_widgets.cpp
modules/gui/qt4/components/interface_widgets.hpp

index 7c98a09728e72f8e737c0136c6fee0643518b60f..f4a40d92d6eef8038ecdb2a60ec90cd0e6a32d29 100644 (file)
@@ -259,12 +259,13 @@ AdvControlsWidget::AdvControlsWidget( intf_thread_t *_p_i ) :
     timeA = timeB = 0;
     CONNECT( THEMIM->getIM(), positionUpdated( float, int, int ),
              this, AtoBLoop( float, int, int ) );
-
+#if 0
     frameButton = new QPushButton( "Fr" );
     frameButton->setMaximumSize( QSize( 26, 26 ) );
     frameButton->setIconSize( QSize( 20, 20 ) );
     advLayout->addWidget( frameButton );
     BUTTON_SET_ACT( frameButton, "Fr", qtr( "Frame by Frame" ), frame() );
+#endif
 
     recordButton = new QPushButton( "R" );
     recordButton->setMaximumSize( QSize( 26, 26 ) );
@@ -293,7 +294,9 @@ void AdvControlsWidget::enableInput( bool enable )
 void AdvControlsWidget::enableVideo( bool enable )
 {
     snapshotButton->setEnabled( enable );
+#if 0
     frameButton->setEnabled( enable );
+#endif
 }
 
 void AdvControlsWidget::snapshot()
@@ -337,8 +340,10 @@ void AdvControlsWidget::AtoBLoop( float f_pos, int i_time, int i_length )
 /* FIXME Record function */
 void AdvControlsWidget::record(){}
 
+#if 0
 //FIXME Frame by frame function
 void AdvControlsWidget::frame(){}
+#endif
 
 /*****************************
  * DA Control Widget !
index 1ca5f43b7bfca6776c2d1cc83c97381cd251d42a..3a1294a4b5dbea1bc7c2b87137d480e6fbdb1b50 100644 (file)
@@ -123,7 +123,9 @@ private:
 
 private slots:
     void snapshot();
+#if 0
     void frame();
+#endif
     void fromAtoB();
     void record();
     void AtoBLoop( float, int, int );