Index: sources/canbus/messagedispatcher.cpp =================================================================== diff -u -r4b9619614f0a9deb0438a803c057918b94aacbec -rd3f98384e9400f8acb84c88dee75f1c480986998 --- sources/canbus/messagedispatcher.cpp (.../messagedispatcher.cpp) (revision 4b9619614f0a9deb0438a803c057918b94aacbec) +++ sources/canbus/messagedispatcher.cpp (.../messagedispatcher.cpp) (revision d3f98384e9400f8acb84c88dee75f1c480986998) @@ -17,7 +17,7 @@ // Project #include "applicationcontroller.h" -#include "messagehandler.h" +#include "frameinterface.h" using namespace Can; @@ -50,14 +50,14 @@ this , SLOT( onActionTransmit(GuiActionType, const QVariantList &))); // From HD - connect(_MessageHandler , SIGNAL(didFrameReceive ( Can_Id, const QByteArray &)), + connect(_FrameInterface , SIGNAL(didFrameReceive ( Can_Id, const QByteArray &)), this , SLOT( onFrameReceive ( Can_Id, const QByteArray &))); } /*! * \brief MessageDispatcher::onFrameReceive * \details Upon message has been received over CANBUS this slot will be called - * by MessageHandler::didFrameReceive signal to process the frame + * by FrameInterface::didFrameReceive signal to process the frame * Upon completion of collected all the required frames * on successful interpretation of the message, emits didActionReceived signal. * The message will be removed from list of the channel vCan_Id messages.