Commit 56211a99 authored by Francois Cartegnie's avatar Francois Cartegnie

Qt: move extensions tab away

parent a72b33b0
...@@ -76,12 +76,12 @@ PluginDialog::PluginDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf ) ...@@ -76,12 +76,12 @@ PluginDialog::PluginDialog( intf_thread_t *_p_intf ) : QVLCFrame( _p_intf )
QVBoxLayout *layout = new QVBoxLayout( this ); QVBoxLayout *layout = new QVBoxLayout( this );
tabs = new QTabWidget( this ); tabs = new QTabWidget( this );
tabs->addTab( addonsTab = new AddonsTab( p_intf ),
qtr( "Addons Manager" ) );
tabs->addTab( extensionTab = new ExtensionTab( p_intf ), tabs->addTab( extensionTab = new ExtensionTab( p_intf ),
qtr( "Active Extensions" ) ); qtr( "Active Extensions" ) );
tabs->addTab( pluginTab = new PluginTab( p_intf ), tabs->addTab( pluginTab = new PluginTab( p_intf ),
qtr( "Plugins" ) ); qtr( "Plugins" ) );
tabs->addTab( addonsTab = new AddonsTab( p_intf ),
qtr( "Addons Manager" ) );
layout->addWidget( tabs ); layout->addWidget( tabs );
QDialogButtonBox *box = new QDialogButtonBox; QDialogButtonBox *box = new QDialogButtonBox;
...@@ -220,12 +220,6 @@ ExtensionTab::ExtensionTab( intf_thread_t *p_intf_ ) ...@@ -220,12 +220,6 @@ ExtensionTab::ExtensionTab( intf_thread_t *p_intf_ )
// Layout // Layout
QVBoxLayout *layout = new QVBoxLayout( this ); 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 // ListView
extList = new QListView( this ); extList = new QListView( this );
CONNECT( extList, activated( const QModelIndex& ), CONNECT( extList, activated( const QModelIndex& ),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment