summaryrefslogtreecommitdiffstats
path: root/src/Patchage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Patchage.cpp')
-rw-r--r--src/Patchage.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Patchage.cpp b/src/Patchage.cpp
index 693d4ac..8e2dd3a 100644
--- a/src/Patchage.cpp
+++ b/src/Patchage.cpp
@@ -298,7 +298,7 @@ Patchage::idle_callback()
while (!_jack_driver->events().empty()) {
PatchageEvent& ev = _jack_driver->events().front();
_jack_driver->events().pop();
- ev.execute();
+ ev.execute(this);
}
}
@@ -308,7 +308,7 @@ Patchage::idle_callback()
while (!_alsa_driver->events().empty()) {
PatchageEvent& ev = _alsa_driver->events().front();
_alsa_driver->events().pop();
- ev.execute();
+ ev.execute(this);
}
}
#endif