Index: sources/ApplicationController.cpp =================================================================== diff -u -r8b044d8ef7db6f72c65aa6109d5f29a79bca92a2 -r142f2ddb8ce284c52c0add2acf3ac81f471b78de --- sources/ApplicationController.cpp (.../ApplicationController.cpp) (revision 8b044d8ef7db6f72c65aa6109d5f29a79bca92a2) +++ sources/ApplicationController.cpp (.../ApplicationController.cpp) (revision 142f2ddb8ce284c52c0add2acf3ac81f471b78de) @@ -142,6 +142,8 @@ connect(&_Logger , SIGNAL(didExportLogs ()), this , SLOT( onExport ())); + connect(&_Logger , SIGNAL(didExportStat (quint32, const QString &, quint8)), + this , SLOT( onExportStat (quint32, const QString &, quint8))); // Settings - move to application thread connect(this, SIGNAL(didSettingsInit()), @@ -344,6 +346,12 @@ // has been tested manually emit didExport(); } + +void ApplicationController::onExportStat(quint32 vIndex, const QString &vFileName, quint8 vPercent) +{ + // DEBUG: qDebug() << "1" << vIndex << vFileName << vPercent; + emit didExportStat(vIndex, vFileName, vPercent); +} // disabled coco end /*!