summaryrefslogtreecommitdiffstats
path: root/src/Patchage.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-07-05 03:06:59 +0000
committerDavid Robillard <d@drobilla.net>2007-07-05 03:06:59 +0000
commit6067f8f8572bd7b318d3d17f16dc192079c7e046 (patch)
tree8f1b6a37ea61b72f918c672b282056c48098e5d9 /src/Patchage.cpp
parent8006c612d557bd071f9ab033c82d27a499bdc0e6 (diff)
downloadpatchage-6067f8f8572bd7b318d3d17f16dc192079c7e046.tar.gz
patchage-6067f8f8572bd7b318d3d17f16dc192079c7e046.tar.bz2
patchage-6067f8f8572bd7b318d3d17f16dc192079c7e046.zip
More memory consumption reduction.
git-svn-id: http://svn.drobilla.net/lad/patchage@579 a436a847-0d15-0410-975c-d299462d15a1
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