Index: sources/gui/GuiView.cpp =================================================================== diff -u -r689177edf29dee6f10bebfed42f6bbadeb7ce8a8 -rfe3f53cba411ccc253f7b86ac0f9f899d2cb0630 --- sources/gui/GuiView.cpp (.../GuiView.cpp) (revision 689177edf29dee6f10bebfed42f6bbadeb7ce8a8) +++ sources/gui/GuiView.cpp (.../GuiView.cpp) (revision fe3f53cba411ccc253f7b86ac0f9f899d2cb0630) @@ -83,6 +83,8 @@ connect(&_GuiController, SIGNAL(didPOSTPass (bool)), this , SLOT( onPOSTPass (bool))); + connect(this , SIGNAL(didCancelLogExport ()), + &_GuiController, SLOT( doCancelLogExport ())); } /*! @@ -407,3 +409,12 @@ void GuiView::doQuitApplication() { emit didQuitApplication(); } + +/*! + * \brief GuiView::doCancelLogExport + * \details emit the didCancelLogExport signal to ask GuiController to cancel the log exporting + */ +void GuiView::doCancelLogExport() +{ + emit didCancelLogExport(); +}