Index: sources/gui/guiview.cpp =================================================================== diff -u -r56d00a82669a7a2c00ab90109a89dbec8db27527 -rb9c5b0b3afc3b34d4980ecc4f023f498f80dafbc --- sources/gui/guiview.cpp (.../guiview.cpp) (revision 56d00a82669a7a2c00ab90109a89dbec8db27527) +++ sources/gui/guiview.cpp (.../guiview.cpp) (revision b9c5b0b3afc3b34d4980ecc4f023f498f80dafbc) @@ -55,6 +55,9 @@ connect(&_GuiController, SIGNAL(didUSBDriveRemove()), this , SLOT( doUSBDriveRemove())); + connect(&_GuiController, SIGNAL(didExport()), + this , SLOT( doExport())); + // From UI : Export Log connect(this , SIGNAL(didExportLog()), &_GuiController, SLOT( doExportLog())); @@ -133,6 +136,16 @@ } /*! + * \brief GuiView::onExport + * \details The slot which will be called to notify the export is done + * by emitting the didExport signal. + */ +void GuiView::doExport() +{ + emit didExport(); +} + +/*! * \brief GuiView::doExportLog * \details emits didExportLog signal to notify other classes (GuiController) * , the User requested to export the log.