From 9f33ddc256808256e86b3c02aafe637dc50ef54d Mon Sep 17 00:00:00 2001 From: Dominik Schmidt Date: Sun, 26 May 2013 19:25:28 +0200 Subject: [PATCH] Add missing emit ready() --- src/libtomahawk/infosystem/InfoSystem.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libtomahawk/infosystem/InfoSystem.cpp b/src/libtomahawk/infosystem/InfoSystem.cpp index 0ba727535..dc4aa6564 100644 --- a/src/libtomahawk/infosystem/InfoSystem.cpp +++ b/src/libtomahawk/infosystem/InfoSystem.cpp @@ -182,6 +182,7 @@ InfoSystem::init() QMetaObject::invokeMethod( worker, "init", Qt::QueuedConnection, Q_ARG( Tomahawk::InfoSystem::InfoSystemCache*, cache ) ); m_inited = true; + emit ready(); }