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

* Removed obsolete loadingStarted/Finished methods in ArtistInfoWidget.

This commit is contained in:
Christian Muehlhaeuser 2012-06-20 16:20:49 +02:00
parent 64837d8a0c
commit fba255cc13
2 changed files with 0 additions and 18 deletions

View File

@ -97,9 +97,6 @@ ArtistInfoWidget::ArtistInfoWidget( const Tomahawk::artist_ptr& artist, QWidget*
m_pixmap = TomahawkUtils::defaultPixmap( TomahawkUtils::DefaultArtistImage, TomahawkUtils::ScaledCover, QSize( 48, 48 ) );
ui->cover->setPixmap( TomahawkUtils::defaultPixmap( TomahawkUtils::DefaultArtistImage, TomahawkUtils::ScaledCover, QSize( ui->cover->sizeHint() ) ) );
connect( m_albumsModel, SIGNAL( loadingStarted() ), SLOT( onLoadingStarted() ) );
connect( m_albumsModel, SIGNAL( loadingFinished() ), SLOT( onLoadingFinished() ) );
ui->biography->setStyleSheet( "QTextBrowser#biography { background-color: transparent; }" );
ui->biography->setFrameShape( QFrame::NoFrame );
ui->biography->setAttribute( Qt::WA_MacShowFocusRect, 0 );
@ -151,18 +148,6 @@ ArtistInfoWidget::playlistInterface() const
}
void
ArtistInfoWidget::onLoadingStarted()
{
}
void
ArtistInfoWidget::onLoadingFinished()
{
}
bool
ArtistInfoWidget::isBeingPlayed() const
{

View File

@ -99,9 +99,6 @@ private slots:
void onTracksFound( const QList<Tomahawk::query_ptr>& queries, Tomahawk::ModelMode mode );
void onSimilarArtistsLoaded();
void onLoadingStarted();
void onLoadingFinished();
private:
Ui::ArtistInfoWidget *ui;