diff --git a/src/Insight/InsightWorker/InsightWorker.cpp b/src/Insight/InsightWorker/InsightWorker.cpp index 68693533..adc92fd4 100644 --- a/src/Insight/InsightWorker/InsightWorker.cpp +++ b/src/Insight/InsightWorker/InsightWorker.cpp @@ -114,7 +114,7 @@ void InsightWorker::onTargetResumedEvent(const Events::TargetExecutionResumed& e } void InsightWorker::onTargetRegistersWrittenEvent(const Events::RegistersWrittenToTarget& event) { - emit this->targetRegistersWritten(event.registers); + emit this->targetRegistersWritten(event.registers, event.createdTimestamp); } void InsightWorker::onTargetControllerStateReportedEvent(const Events::TargetControllerStateReported& event) { diff --git a/src/Insight/InsightWorker/InsightWorker.hpp b/src/Insight/InsightWorker/InsightWorker.hpp index 40ab42cc..fc37bc0f 100644 --- a/src/Insight/InsightWorker/InsightWorker.hpp +++ b/src/Insight/InsightWorker/InsightWorker.hpp @@ -64,6 +64,6 @@ namespace Bloom void targetProgramCounterUpdated(quint32 programCounter); void targetControllerSuspended(); void targetControllerResumed(const Bloom::Targets::TargetDescriptor& targetDescriptor); - void targetRegistersWritten(const Bloom::Targets::TargetRegisters& targetRegisters); + void targetRegistersWritten(const Bloom::Targets::TargetRegisters& targetRegisters, const QDateTime& timestamp); }; }