1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-07 14:46:33 +02:00

Style fix

This commit is contained in:
Hugo Lindström
2012-09-11 20:35:09 +02:00
parent 71859ed91e
commit ee73e502a5
3 changed files with 5 additions and 5 deletions

View File

@@ -76,7 +76,7 @@ SoundcloudParser::lookupUrl( const QString& link )
QUrl scLink( QString( "http://api.soundcloud.com/resolve.json?client_id=TiNg2DRYhBnp01DA3zNag&url=" ) + link );
qDebug() << scLink.toString();
QNetworkReply* reply = TomahawkUtils::nam()->get( QNetworkRequest( scLink ) );
connect( reply, SIGNAL( finished() ), this, SLOT( SoundcloudBrowseFinished() ) );
connect( reply, SIGNAL( finished() ), this, SLOT( soundcloudBrowseFinished() ) );
m_browseJob = new DropJobNotifier( pixmap(), "Soundcloud", DropJob::All, reply );
JobStatusView::instance()->model()->addJob( m_browseJob );
@@ -218,7 +218,7 @@ SoundcloudParser::SoundcloudBrowseFinished()
if( m_type != DropJob::All )
{
QNetworkReply* reply = TomahawkUtils::nam()->get( QNetworkRequest( QUrl(url) ) );
connect( reply, SIGNAL( finished() ), this, SLOT( SoundcloudLookupFinished() ) );
connect( reply, SIGNAL( finished() ), this, SLOT( soundcloudLookupFinished() ) );
}
}
}

View File

@@ -65,8 +65,8 @@ signals:
void playlist( const Tomahawk::query_ptr& playlist );
private slots:
void SoundcloudBrowseFinished();
void SoundcloudLookupFinished();
void soundcloudBrowseFinished();
void soundcloudLookupFinished();
void playlistCreated();
private: