Index: sources/gui/GuiController.cpp =================================================================== diff -u -r265ce7409a0ea99a4ae059f5ce7978c9cdb10631 -r8b044d8ef7db6f72c65aa6109d5f29a79bca92a2 --- sources/gui/GuiController.cpp (.../GuiController.cpp) (revision 265ce7409a0ea99a4ae059f5ce7978c9cdb10631) +++ sources/gui/GuiController.cpp (.../GuiController.cpp) (revision 8b044d8ef7db6f72c65aa6109d5f29a79bca92a2) @@ -336,29 +336,29 @@ * \details emits didExportLog signal to notify other classes (ApplicationController) * , the User requested to export the log. */ -void GuiController::doExportLog() +void GuiController::doExportLog(const GuiStringIndexMap &vExportList) { - emit didExportLog(); + emit didExportLog(vExportList); } /*! * \brief GuiController::doExportService * \details emits didExportService signal to notify other classes (ApplicationController) * , the User requested to export the log. */ -void GuiController::doExportService() +void GuiController::doExportService(const GuiStringIndexMap &vExportList) { - emit didExportService(); + emit didExportService(vExportList); } /*! * \brief GuiController::doExportTreatment * \details emits didExportTreatment signal to notify other classes (ApplicationController) * , the User requested to export the log. */ -void GuiController::doExportTreatment() +void GuiController::doExportTreatment(const GuiStringIndexMap &vExportList) { - emit didExportTreatment(); + emit didExportTreatment(vExportList); } /*!