1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-13 17:43:59 +02:00

Fix signal naming

This commit is contained in:
Uwe L. Korn
2014-05-24 17:42:53 +01:00
parent ec0d5d6e40
commit 42b5153a13

View File

@@ -611,7 +611,7 @@ JSResolverHelper::returnStreamUrl( const QString& streamUrl, const QMap<QString,
tDebug() << "Creating a QNetowrkReply with url:" << req.url().toString();
NetworkReply* reply = new NetworkReply( Tomahawk::Utils::nam()->get( req ) );
NewClosure( QSharedPointer<NetworkReply>( reply ) , SIGNAL( finalUrlReached ), this, SLOT( gotStreamUrl() ), callback );
NewClosure( QSharedPointer<NetworkReply>( reply ) , SIGNAL( finalUrlReached() ), this, SLOT( gotStreamUrl( boost::function< void( QSharedPointer< QIODevice >& ) > ) ), callback );
}
void