Index: sources/ApplicationController.cpp =================================================================== diff -u -r265ce7409a0ea99a4ae059f5ce7978c9cdb10631 -r8b044d8ef7db6f72c65aa6109d5f29a79bca92a2 --- sources/ApplicationController.cpp (.../ApplicationController.cpp) (revision 265ce7409a0ea99a4ae059f5ce7978c9cdb10631) +++ sources/ApplicationController.cpp (.../ApplicationController.cpp) (revision 8b044d8ef7db6f72c65aa6109d5f29a79bca92a2) @@ -133,12 +133,12 @@ connect(&_DeviceController , SIGNAL(didSDCardSpaceTooLow(quint8)), this , SLOT( onSDCardSpaceTooLow(quint8))); - connect(&_GuiController , SIGNAL(didExportLog ()), - this , SLOT( onExportLog ())); - connect(&_GuiController , SIGNAL(didExportService ()), - this , SLOT( onExportService ())); - connect(&_GuiController , SIGNAL(didExportTreatment ()), - this , SLOT( onExportTreatment ())); + connect(&_GuiController , SIGNAL(didExportLog (const GuiStringIndexMap &)), + this , SLOT( onExportLog (const GuiStringIndexMap &))); + connect(&_GuiController , SIGNAL(didExportService (const GuiStringIndexMap &)), + this , SLOT( onExportService (const GuiStringIndexMap &))); + connect(&_GuiController , SIGNAL(didExportTreatment (const GuiStringIndexMap &)), + this , SLOT( onExportTreatment (const GuiStringIndexMap &))); connect(&_Logger , SIGNAL(didExportLogs ()), this , SLOT( onExport ())); @@ -313,25 +313,25 @@ * \brief ApplicationController::onExportLog * \details the slot which will be called by UI to so the log export. */ -void ApplicationController::onExportLog() +void ApplicationController::onExportLog(const GuiStringIndexMap &vExportList) { - LOG_EXPORTLOG; + LOG_EXPORTLOG(vExportList); } /*! * \brief ApplicationController::onExportService * \details the slot which will be called by UI to do the service log export. */ -void ApplicationController::onExportService() +void ApplicationController::onExportService(const GuiStringIndexMap &vExportList) { - LOG_EXPORTERR; + LOG_EXPORTERR(vExportList); } /*! * \brief ApplicationController::onExportTreatment * \details the slot which will be called by UI to do the treatment treatment log export. */ -void ApplicationController::onExportTreatment() +void ApplicationController::onExportTreatment(const GuiStringIndexMap &vExportList) { - LOG_EXPORTTRT; + LOG_EXPORTTRT(vExportList); } /*!