From: Jean-Baptiste Kempf Date: Tue, 30 Jun 2009 21:54:05 +0000 (+0200) Subject: Qt: Remove some connect errors. X-Git-Tag: 1.1.0-ff~5170 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=dcbb433f4f6c10ae5f4f57573086260240dcbb97;p=vlc Qt: Remove some connect errors. --- diff --git a/modules/gui/qt4/components/playlist/standardpanel.cpp b/modules/gui/qt4/components/playlist/standardpanel.cpp index 641600d2d3..7b41816e8c 100644 --- a/modules/gui/qt4/components/playlist/standardpanel.cpp +++ b/modules/gui/qt4/components/playlist/standardpanel.cpp @@ -241,19 +241,18 @@ void StandardPLPanel::popupAdd() if( currentRootId == THEPL->p_local_category->i_id || currentRootId == THEPL->p_local_onelevel->i_id ) { - popup.addAction( qtr(I_PL_ADDF), THEDP, SLOT(PLAppendDialog( OPEN_FILE_TAB )) ); - popup.addAction( qtr(I_PL_ADDF), THEDP, SLOT(PLAppendDialog( OPEN_DISC_TAB )) ); - popup.addAction( qtr(I_PL_ADDF), THEDP, SLOT(PLAppendDialog( OPEN_NETWORK_TAB )) ); - popup.addAction( qtr(I_PL_ADDF), THEDP, SLOT(PLAppendDialog( OPEN_FILE_TAB )) ); + popup.addAction( qtr(I_PL_ADDF), THEDP, SLOT( simplePLAppendDialog()) ); popup.addAction( qtr(I_PL_ADDDIR), THEDP, SLOT( PLAppendDir()) ); + popup.addAction( qtr(I_OP_ADVOP), THEDP, SLOT( PLAppendDialog()) ); } else if( ( THEPL->p_ml_category && currentRootId == THEPL->p_ml_category->i_id ) || ( THEPL->p_ml_onelevel && currentRootId == THEPL->p_ml_onelevel->i_id ) ) { - popup.addAction( qtr(I_PL_ADDF), THEDP, SLOT( MLAppendDialog() ) ); + popup.addAction( qtr(I_PL_ADDF), THEDP, SLOT( simpleMLAppendDialog()) ); popup.addAction( qtr(I_PL_ADDDIR), THEDP, SLOT( MLAppendDir() ) ); + popup.addAction( qtr(I_OP_ADVOP), THEDP, SLOT( MLAppendDialog() ) ); } popup.exec( QCursor::pos() - addButton->mapFromGlobal( QCursor::pos() ) diff --git a/modules/gui/qt4/util/customwidgets.cpp b/modules/gui/qt4/util/customwidgets.cpp index 2dc55a4531..6135a1061b 100644 --- a/modules/gui/qt4/util/customwidgets.cpp +++ b/modules/gui/qt4/util/customwidgets.cpp @@ -241,6 +241,6 @@ QString VLCKeyToString( int val ) if( val & KEY_MODIFIER_SHIFT ) r+= "Shift+"; - return r + (base ? base : "Unset"); + return r + (base ? base : qtr( "Unset" ) ); }