From 4ce6781bd6727fca68d4c99337f47a75d849e5ab Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 21 Oct 2011 20:41:08 +0000 Subject: Merge QueuedEvent into Event. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3569 a436a847-0d15-0410-975c-d299462d15a1 --- src/server/events/SetPortValue.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/server/events/SetPortValue.cpp') diff --git a/src/server/events/SetPortValue.cpp b/src/server/events/SetPortValue.cpp index dc5d1564..1b0ec373 100644 --- a/src/server/events/SetPortValue.cpp +++ b/src/server/events/SetPortValue.cpp @@ -51,7 +51,7 @@ SetPortValue::SetPortValue(Engine& engine, SampleCount timestamp, const Raul::Path& port_path, const Raul::Atom& value) - : QueuedEvent(engine, request, timestamp) + : Event(engine, request, timestamp) , _queued(queued) , _port_path(port_path) , _value(value) @@ -65,7 +65,7 @@ SetPortValue::SetPortValue(Engine& engine, SampleCount timestamp, PortImpl* port, const Raul::Atom& value) - : QueuedEvent(engine, request, timestamp) + : Event(engine, request, timestamp) , _queued(false) , _port_path(port->path()) , _value(value) @@ -103,7 +103,7 @@ SetPortValue::pre_process() _binding = _engine.control_bindings()->port_binding(_port); - QueuedEvent::pre_process(); + Event::pre_process(); } void -- cgit v1.2.1