Index: sources/storage/TreatmentLog.cpp =================================================================== diff -u -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 -ra7c8f14c6d5420ea15cdbd8fc6e3c46bae1052cb --- sources/storage/TreatmentLog.cpp (.../TreatmentLog.cpp) (revision 2ef03b2ce51b4dc507f66e9671953a8e0824bde9) +++ sources/storage/TreatmentLog.cpp (.../TreatmentLog.cpp) (revision a7c8f14c6d5420ea15cdbd8fc6e3c46bae1052cb) @@ -616,11 +616,10 @@ /*! * \brief TreatmentLog::testPendingTxReports - * \details this function count downs for the _pendingInterval + * \details this function counts downs for the _pendingInterval * when the _pendingCounter reaches 0 will search for the files - * in the _TreatmentLog.logPathPending() * and if there is any will get the recent file in the list - * and asks for the TxCode by emitting the didTxPending signal + * and asks for the TxCode by emitting the didPendingTxr signal */ void TreatmentLog::testPendingTxReports() { @@ -649,6 +648,6 @@ } QString message = pendingTxr + " , " + _pendingTxr + " , " + _gTxCode; LOG_DEBUG(message); - emit didTxPending( _pendingTxr ); + emit didPendingTxr( _pendingTxr ); } }