[vlc-commits] Qt: move extensions tab away

Francois Cartegnie git at videolan.org
Wed Mar 26 12:55:19 CET 2014


vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Wed Mar 26 12:54:22 2014 +0100| [56211a99963f12f2bdc90610abc4eb6fba084e60] | committer: Francois Cartegnie

Qt: move extensions tab away

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=56211a99963f12f2bdc90610abc4eb6fba084e60
---

 modules/gui/qt4/dialogs/plugins.cpp |   10 ++--------
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/modules/gui/qt4/dialogs/plugins.cpp b/modules/gui/qt4/dialogs/plugins.cpp
index d2bb5c0..9d1b982 100644
--- a/modules/gui/qt4/dialogs/plugins.cpp
+++ b/modules/gui/qt4/dialogs/plugins.cpp
@@ -76,12 +76,12 @@ PluginDialog::PluginDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
 
     QVBoxLayout *layout = new QVBoxLayout( this );
     tabs = new QTabWidget( this );
+    tabs->addTab( addonsTab = new AddonsTab( p_intf ),
+                  qtr( "Addons Manager" ) );
     tabs->addTab( extensionTab = new ExtensionTab( p_intf ),
                   qtr( "Active Extensions" ) );
     tabs->addTab( pluginTab = new PluginTab( p_intf ),
                   qtr( "Plugins" ) );
-    tabs->addTab( addonsTab = new AddonsTab( p_intf ),
-                  qtr( "Addons Manager" ) );
     layout->addWidget( tabs );
 
     QDialogButtonBox *box = new QDialogButtonBox;
@@ -220,12 +220,6 @@ ExtensionTab::ExtensionTab( intf_thread_t *p_intf_ )
     // Layout
     QVBoxLayout *layout = new QVBoxLayout( this );
 
-    QLabel *notice = new QLabel( qtr("Get more extensions from")
-            + QString( " <a href=\"http://addons.videolan.org/\">"
-                       "addons.videolan.org</a>." ) );
-    notice->setOpenExternalLinks( true );
-    layout->addWidget( notice );
-
     // ListView
     extList = new QListView( this );
     CONNECT( extList, activated( const QModelIndex& ),



More information about the vlc-commits mailing list