1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-07 17:42:35 +02:00

* Fixed resolvingFinished() signal in Query.

This commit is contained in:
Christian Muehlhaeuser 2011-03-06 17:23:52 +01:00
parent 547dc76ca8
commit f3ef031859

View File

@ -94,7 +94,7 @@ void
Query::onResolvingFinished()
{
// qDebug() << Q_FUNC_INFO << "Finished resolving." << toString();
emit resolvingFinished( !m_results.isEmpty() );
emit resolvingFinished( m_solved );
}