summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/events/DeactivateEvent.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/engine/events/DeactivateEvent.cpp')
-rw-r--r--src/libs/engine/events/DeactivateEvent.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libs/engine/events/DeactivateEvent.cpp b/src/libs/engine/events/DeactivateEvent.cpp
index 22434cbe..fef3ece6 100644
--- a/src/libs/engine/events/DeactivateEvent.cpp
+++ b/src/libs/engine/events/DeactivateEvent.cpp
@@ -22,8 +22,8 @@
namespace Om {
-DeactivateEvent::DeactivateEvent(CountedPtr<Responder> responder)
-: QueuedEvent(responder)
+DeactivateEvent::DeactivateEvent(CountedPtr<Responder> responder, samplecount timestamp)
+: QueuedEvent(responder, timestamp)
{
}
@@ -45,7 +45,7 @@ DeactivateEvent::execute(samplecount offset)
void
DeactivateEvent::post_process()
{
- m_responder->respond_ok();
+ _responder->respond_ok();
om->deactivate();
}