Index: sources/ApplicationController.cpp =================================================================== diff -u -rec7f919fdb70ff29a8de627937e4ad7008e59c1c -r7ebc073150532073ae7f1a0e768272bcff5d6fb3 --- sources/ApplicationController.cpp (.../ApplicationController.cpp) (revision ec7f919fdb70ff29a8de627937e4ad7008e59c1c) +++ sources/ApplicationController.cpp (.../ApplicationController.cpp) (revision 7ebc073150532073ae7f1a0e768272bcff5d6fb3) @@ -127,8 +127,12 @@ connect(&_DeviceController , SIGNAL(didSDCardSpaceTooLow(quint8)), this , SLOT( onSDCardSpaceTooLow(quint8))); - connect(&_GuiController , SIGNAL(didExportLog()), - this , SLOT( onExportLog())); + connect(&_GuiController , SIGNAL(didExportLog ()), + this , SLOT( onExportLog ())); + connect(&_GuiController , SIGNAL(didExportService ()), + this , SLOT( onExportService ())); + connect(&_GuiController , SIGNAL(didExportTreatment ()), + this , SLOT( onExportTreatment ())); connect(&_Logger , SIGNAL(didExportLogs()), this , SLOT( onExport ())); @@ -300,11 +304,24 @@ */ void ApplicationController::onExportLog() { - // disabled coco begin validated: This needs user interaction to plug-in USB device - // has been tested manually - LOG_EXPORT; + LOG_EXPORTLOG; } -// disabled coco end +/*! + * \brief ApplicationController::onExportService + * \details the slot which will be called by UI to do the service log export. + */ +void ApplicationController::onExportService() +{ + LOG_EXPORTERR; +} +/*! + * \brief ApplicationController::onExportTreatment + * \details the slot which will be called by UI to do the treatment treatment log export. + */ +void ApplicationController::onExportTreatment() +{ + LOG_EXPORTTRT; +} /*! * \brief ApplicationController::onExport