Index: sources/ApplicationController.cpp =================================================================== diff -u -r6abfb957108b171a8a5ab6770ad9b463235c210b -r584874a724b2d3e8c98247d3b0e42d6a34ce9478 --- sources/ApplicationController.cpp (.../ApplicationController.cpp) (revision 6abfb957108b171a8a5ab6770ad9b463235c210b) +++ sources/ApplicationController.cpp (.../ApplicationController.cpp) (revision 584874a724b2d3e8c98247d3b0e42d6a34ce9478) @@ -24,6 +24,7 @@ //#include "FileHandler.h" #include "Settings.h" #include "MSettings.h" +#include "StateController.h" // TODO: Clean up APPLICATION CONTROLLER @@ -79,10 +80,10 @@ quitThread(); // validated } -void ApplicationController::onUnhandledReceived(QString msg) +void ApplicationController::doUnhandledMsgAppController(const QVariantList &msg) { qDebug() << "Test Slot" << msg; - emit isUnhandledMsgReady(msg); + emit didUnhandledMsgAppController(msg); } // disabled coco end @@ -112,8 +113,8 @@ connect(&_settingsWatcher, SIGNAL(finished ()), this , SLOT(onSettingsUpdate())); - connect(this , SIGNAL(isUnhandledMsgReady(QString)), - &_dryDemoStates, SLOT(onMsgReceived(QString))); + connect(&_MessageDispatcher, SIGNAL(didUnhandledMsgDispatcher(const QVariantList &)), + this , SLOT(doUnhandledMsgAppController(const QVariantList &))); } /*!