From 9dbdffd0ef9315704b170b07e8d99ab3ec96b14f Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Fri, 26 Apr 2013 09:08:52 +0200 Subject: [PATCH] * Query::resolvingFinished should indicate whether there are any results, not whether the Query is solved. --- src/libtomahawk/Query.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libtomahawk/Query.cpp b/src/libtomahawk/Query.cpp index fe5fe6e1a..98bac5dff 100644 --- a/src/libtomahawk/Query.cpp +++ b/src/libtomahawk/Query.cpp @@ -256,7 +256,7 @@ Query::onResolvingFinished() m_resolveFinished = true; m_resolvers.clear(); - emit resolvingFinished( m_solved ); + emit resolvingFinished( m_playable ); } }