summaryrefslogtreecommitdiffstats
path: root/src/engine/events/LoadPlugins.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/events/LoadPlugins.cpp')
-rw-r--r--src/engine/events/LoadPlugins.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/engine/events/LoadPlugins.cpp b/src/engine/events/LoadPlugins.cpp
index b9276954..4b16048f 100644
--- a/src/engine/events/LoadPlugins.cpp
+++ b/src/engine/events/LoadPlugins.cpp
@@ -26,14 +26,14 @@ namespace Ingen {
namespace Events {
-LoadPluginsEvent::LoadPluginsEvent(Engine& engine, SharedPtr<Responder> responder, SampleCount timestamp, QueuedEventSource* source)
+LoadPlugins::LoadPlugins(Engine& engine, SharedPtr<Responder> responder, SampleCount timestamp, QueuedEventSource* source)
: QueuedEvent(engine, responder, timestamp, true, source)
{
/* FIXME: Not sure why this has to be blocking, but it fixes some nasty bugs.. */
}
void
-LoadPluginsEvent::pre_process()
+LoadPlugins::pre_process()
{
_engine.node_factory()->load_plugins();
@@ -41,7 +41,7 @@ LoadPluginsEvent::pre_process()
}
void
-LoadPluginsEvent::post_process()
+LoadPlugins::post_process()
{
if (_source)
_source->unblock();