]> git.sesse.net Git - vlc/commitdiff
Qt4 - Open: solve a bug in a signal.
authorJean-Baptiste Kempf <jb@videolan.org>
Thu, 6 Sep 2007 22:25:53 +0000 (22:25 +0000)
committerJean-Baptiste Kempf <jb@videolan.org>
Thu, 6 Sep 2007 22:25:53 +0000 (22:25 +0000)
modules/gui/qt4/dialogs/open.cpp

index 250705ee09930898feac12e7c3263e79f6f61138..a7736bb196a95a36814be5c78e039321bf266365 100644 (file)
@@ -98,7 +98,7 @@ OpenDialog::OpenDialog( QWidget *parent, intf_thread_t *_p_intf, bool modal,
                                     QKeySequence( "Alt+P" ) );
     openButtonMenu->addAction( qtr("&Stream"), this, SLOT( stream() ) ,
                                     QKeySequence( "Alt+S" ) );
-    openButtonMenu->addAction( qtr("&Convert"), this, SLOT( transcode( ) ) ,
+    openButtonMenu->addAction( qtr("&Convert"), this, SLOT( transcode() ) ,
                                     QKeySequence( "Alt+C" ) );
 
     playButton->setMenu( openButtonMenu );
@@ -160,7 +160,7 @@ void OpenDialog::setMenuAction()
             break;
         case OPEN_AND_SAVE:
             playButton->setText( qtr("&Convert / Save") );
-            BUTTONACT( playButton, stream( true ) );
+            BUTTONACT( playButton, transcode() );
             break;
         case ENQUEUE:
             playButton->setText( qtr("&Enqueue") );