1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-25 02:09:48 +01:00

* Remove obsolete method.

This commit is contained in:
Christian Muehlhaeuser 2011-08-12 04:18:41 +02:00
parent 7169aa352e
commit fe15fcd1f5
2 changed files with 0 additions and 11 deletions

View File

@ -64,9 +64,6 @@ AlbumInfoWidget::AlbumInfoWidget( const Tomahawk::album_ptr& album, QWidget* par
connect( Tomahawk::InfoSystem::InfoSystem::instance(), SIGNAL( finished( QString ) ), SLOT( infoSystemFinished( QString ) ) );
// Apparently headers can only be removed when it's already visible / layed-out
QTimer::singleShot( 0, this, SLOT( removeHeaders() ) );
load( album );
}
@ -163,9 +160,3 @@ AlbumInfoWidget::changeEvent( QEvent* e )
break;
}
}
void
AlbumInfoWidget::removeHeaders()
{
}

View File

@ -89,8 +89,6 @@ private slots:
void infoSystemInfo( Tomahawk::InfoSystem::InfoRequestData requestData, QVariant output );
void infoSystemFinished( QString target );
void removeHeaders();
private:
Ui::AlbumInfoWidget *ui;