diff options
Diffstat (limited to 'src/engine/events/RequestPlugins.cpp')
-rw-r--r-- | src/engine/events/RequestPlugins.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/engine/events/RequestPlugins.cpp b/src/engine/events/RequestPlugins.cpp index b54888c3..95fd5ddf 100644 --- a/src/engine/events/RequestPlugins.cpp +++ b/src/engine/events/RequestPlugins.cpp @@ -25,14 +25,14 @@ namespace Ingen { namespace Events { -RequestPluginsEvent::RequestPluginsEvent(Engine& engine, SharedPtr<Responder> responder, SampleCount timestamp) +RequestPlugins::RequestPlugins(Engine& engine, SharedPtr<Responder> responder, SampleCount timestamp) : QueuedEvent(engine, responder, timestamp) { } void -RequestPluginsEvent::pre_process() +RequestPlugins::pre_process() { // Take a copy to send in the post processing thread (to avoid problems // because std::map isn't thread safe) @@ -43,7 +43,7 @@ RequestPluginsEvent::pre_process() void -RequestPluginsEvent::post_process() +RequestPlugins::post_process() { if (_responder->client()) { _engine.broadcaster()->send_plugins_to(_responder->client(), _plugins); |