Index: sources/gui/guicontroller.cpp =================================================================== diff -u -r9a3ee027dbc33f39ee7df2a9dc5a7897c6b1854d -rde2f87e15fa05b1c45581cfedd8f1af0c47c2b48 --- sources/gui/guicontroller.cpp (.../guicontroller.cpp) (revision 9a3ee027dbc33f39ee7df2a9dc5a7897c6b1854d) +++ sources/gui/guicontroller.cpp (.../guicontroller.cpp) (revision de2f87e15fa05b1c45581cfedd8f1af0c47c2b48) @@ -25,6 +25,10 @@ // Singleton SINGLETON_INIT(GuiController) +/*! + * \brief GuiController Constructor + * \param parent + */ GuiController::GuiController(QObject *parent) : QObject(parent) {} /*! @@ -63,7 +67,7 @@ { // Process the GuiView Request. // If can be processed in GuiController take action and notify GuiView - qDebug() << "GuiController.actionRequested : " << vAction; + //qDebug() << "GuiController.actionRequested : " << vAction; GuiActionInfo mInfo = GuiActionInfo::Accepted; Q_UNUSED(mInfo) switch (vAction) { @@ -87,7 +91,7 @@ */ void GuiController::doActionPerform(GuiActionType vAction, GuiActionInfo vInfo) { - qDebug() << "GuiController.actionPerformed : " << vAction << vInfo; + // qDebug() << "GuiController.actionPerformed : " << vAction << vInfo; // Process the performed action by Gui // Process ... emit didActionPerform(vAction, vInfo); @@ -101,7 +105,7 @@ */ void GuiController::onActionCommand(GuiActionType vAction) { - qDebug() << "GuiController.actionCommanded : " << vAction; + // qDebug() << "GuiController.actionCommanded : " << vAction; // Process the command and notify GuiView // Process ... emit didActionCommand(vAction); @@ -116,7 +120,7 @@ */ void GuiController::onActionConfirm(GuiActionType vAction, GuiActionInfo vInfo) { - qDebug() << "GuiController.actionConfirmed : " << vAction; + // qDebug() << "GuiController.actionConfirmed : " << vAction; // Process the command and notify GuiView // Process ... emit didActionConfirm(vAction, vInfo);