1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-09 07:36:48 +02:00

Show the number of results

This commit is contained in:
Uwe L. Korn
2014-10-27 13:24:08 +01:00
parent 3e2dd98901
commit ff5939f0db

View File

@@ -44,7 +44,8 @@ public slots:
std::chrono::duration_cast<std::chrono::duration<double>>( resolveDoneTime - startTime ); std::chrono::duration_cast<std::chrono::duration<double>>( resolveDoneTime - startTime );
std::cerr << "Fulltext query took " << duration.count() std::cerr << "Fulltext query took " << duration.count()
<< "s" << std::endl; << "s and returned " << results.length() << " results."
<< std::endl;
// Query is destructed by deleteLater() so we need to wait for the // Query is destructed by deleteLater() so we need to wait for the
// event queue to process it. // event queue to process it.