Index: sources/gui/GuiView.cpp =================================================================== diff -u -ra58f91b077c8131bea3dbde0fc338adb113fc9f3 -rd7f70405a20319dd9f2dc93ee7f357cc88d0f84b --- sources/gui/GuiView.cpp (.../GuiView.cpp) (revision a58f91b077c8131bea3dbde0fc338adb113fc9f3) +++ sources/gui/GuiView.cpp (.../GuiView.cpp) (revision d7f70405a20319dd9f2dc93ee7f357cc88d0f84b) @@ -43,9 +43,6 @@ */ void GuiView::initConnections() { - connect(&_GuiController, SIGNAL(didActionReceive (GuiActionType, const QVariantList &)), - this , SLOT( onActionReceive (GuiActionType, const QVariantList &))); - // since we do not have access to this object because it is created in QML. // Connection to the GuiController made here // It should be defined in the class which wants to connect to signal. @@ -86,21 +83,7 @@ connect(&_GuiController, SIGNAL(didPOSTPass (bool)), this , SLOT( onPOSTPass (bool))); } - /*! - * \brief GuiView::onActionReceive - * \details emits didActionReceive signal to notify other classes (Gui) - * , an action has been received. - * \param vAction - the action - * \param vData - the action data - */ -void GuiView::onActionReceive (GuiActionType vAction, const QVariantList &vData) -{ - // process the evaluation and notify GUI - emit didActionReceive (vAction, vData); -} - -/*! * \brief GuiView::doActionTransmit * \details emits didActionTransmit signal to notify other classes (GuiController) * , an action has been required to be transmitted.