1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-23 17:29:42 +01:00

* Removed obsolete loading methods in AlbumInfoWidget.

This commit is contained in:
Christian Muehlhaeuser 2012-07-03 04:15:28 +02:00
parent 5991467d40
commit 658f0bf9bc
2 changed files with 0 additions and 18 deletions

View File

@ -61,9 +61,6 @@ AlbumInfoWidget::AlbumInfoWidget( const Tomahawk::album_ptr& album, QWidget* par
m_pixmap = TomahawkUtils::defaultPixmap( TomahawkUtils::DefaultAlbumCover, TomahawkUtils::ScaledCover, QSize( 48, 48 ) );
connect( m_tracksModel, SIGNAL( loadingStarted() ), SLOT( onLoadingStarted() ) );
connect( m_tracksModel, SIGNAL( loadingFinished() ), SLOT( onLoadingFinished() ) );
load( album );
}
@ -81,18 +78,6 @@ AlbumInfoWidget::playlistInterface() const
}
void
AlbumInfoWidget::onLoadingStarted()
{
}
void
AlbumInfoWidget::onLoadingFinished()
{
}
bool
AlbumInfoWidget::isBeingPlayed() const
{

View File

@ -97,9 +97,6 @@ private slots:
void gotAlbums( const QList<Tomahawk::album_ptr>& albums );
void onAlbumCoverUpdated();
void onLoadingStarted();
void onLoadingFinished();
private:
Ui::AlbumInfoWidget* ui;