Index: sources/gui/guicontroller.cpp =================================================================== diff -u -r862dc0590b73c618fac73dce2c976e3526e0404a -rb9c5b0b3afc3b34d4980ecc4f023f498f80dafbc --- sources/gui/guicontroller.cpp (.../guicontroller.cpp) (revision 862dc0590b73c618fac73dce2c976e3526e0404a) +++ sources/gui/guicontroller.cpp (.../guicontroller.cpp) (revision b9c5b0b3afc3b34d4980ecc4f023f498f80dafbc) @@ -71,6 +71,10 @@ this , SLOT( onUSBDriveMount ())); connect(&_ApplicationController, SIGNAL(didUSBDriveRemove()), this , SLOT( onUSBDriveRemove())); + + connect(&_ApplicationController, SIGNAL(didExport()), + this , SLOT( onExport())); + } /*! @@ -217,6 +221,16 @@ } /*! + * \brief GuiController::onExport + * \details The slot which will be called to notify the export is done + * by emitting the didExport signal. + */ +void GuiController::onExport() +{ + emit didExport(); +} + +/*! * \brief GuiController::doExportLog * \details emits didExportLog signal to notify other classes (ApplicationController) * , the User requested to export the log.