prep newly loaded runners if we're running a match

This commit is contained in:
Aaron Seigo 2012-10-25 21:18:41 +02:00
parent 3f1e310891
commit 8af1a4d2f1

View File

@ -293,6 +293,9 @@ public:
kDebug() << "================= loading runner:" << service->name() << "=================";
QObject::connect(runner, SIGNAL(matchingSuspended(bool)), q, SLOT(runnerMatchingSuspended(bool)));
QMetaObject::invokeMethod(runner, "init");
if (prepped) {
emit runner->prepare();
}
}
return runner;