Index: sources/ApplicationController.cpp =================================================================== diff -u -r00d9bb06ec2bad14f6dc2db678b750c244f694ef -rbb74da05f81b82dad3ec844c1feb1135b949f1c2 --- sources/ApplicationController.cpp (.../ApplicationController.cpp) (revision 00d9bb06ec2bad14f6dc2db678b750c244f694ef) +++ sources/ApplicationController.cpp (.../ApplicationController.cpp) (revision bb74da05f81b82dad3ec844c1feb1135b949f1c2) @@ -81,7 +81,7 @@ // coco end /*! - * \brief ApplicationController::initConnections + * \brief ApplicationController::initConnections * \details Initializes the required signal/slot connection between this class and other objects * to be able to communicate. */ @@ -161,32 +161,32 @@ // coco end /*! - * \brief ApplicationController::onFailedTransmit - * Called when we failed to get a response back from the HD - * \param seq - The sequence that failed to send to the HD. + * \brief ApplicationController::onFailedTransmit + * \details Called when failed to get a response back from the HD + * \param seq - The sequence that failed to send to the HD. */ void ApplicationController::onFailedTransmit(Sequence seq) { emit didFailedTransmit(seq); } /*! - * \brief Process the requested action + * \brief Process the requested action * \details Processes the requested action - * \param vAction - User requested Action - * \param vData - Action data to be transmitted. + * \param vAction - User requested Action + * \param vData - Action data to be transmitted. */ void ApplicationController::onActionTransmit(GuiActionType vAction, const QVariantList &vData) { emit didActionTransmit(vAction, vData); } /*! - * \brief An action has been confirmed + * \brief An action has been confirmed * \details GUI requested an action. - * In response HD confirmed the action. - * \param vAction - * \param vData + * In response HD confirmed the action. + * \param vAction - Received action + * \param vData - data of the action */ void ApplicationController::onActionReceive (GuiActionType vAction, const QVariantList &vData) {