Commit d3a4dc86 authored by Clément Stenac's avatar Clément Stenac

Remove useless code

parent a01c61f6
...@@ -172,20 +172,11 @@ PlaylistWidget::PlaylistWidget( intf_thread_t *_p_intf ) : ...@@ -172,20 +172,11 @@ PlaylistWidget::PlaylistWidget( intf_thread_t *_p_intf ) :
BasePlaylistWidget ( _p_intf) BasePlaylistWidget ( _p_intf)
{ {
QVBoxLayout *left = new QVBoxLayout( ); QVBoxLayout *left = new QVBoxLayout( );
QHBoxLayout *middle = new QHBoxLayout;
selector = new PLSelector( this, p_intf, THEPL ); selector = new PLSelector( this, p_intf, THEPL );
selector->setMaximumWidth( 130 ); selector->setMaximumWidth( 130 );
left->addWidget( selector ); left->addWidget( selector );
/* QPushButton *undockButton = new QPushButton( "UN", this );
undockButton->setMaximumWidth( 25 );
undockButton->setToolTip( qtr( "Undock playlist for main interface" ) );
BUTTONACT( undockButton, undock() );
middle->addWidget( undockButton );
*/
left->addLayout( middle );
QLabel *art = new QLabel( "" ); QLabel *art = new QLabel( "" );
art->setMaximumHeight( 128 ); art->setMaximumHeight( 128 );
art->setMaximumWidth( 128 ); art->setMaximumWidth( 128 );
......
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