From 5f71c5eecee673b0a1156d0fe56726750d17cb86 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 3 Jun 2009 01:25:01 +0000 Subject: Rename event classes to match new pretty file names. git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2069 a436a847-0d15-0410-975c-d299462d15a1 --- src/engine/events/SetPortValue.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/engine/events/SetPortValue.cpp') diff --git a/src/engine/events/SetPortValue.cpp b/src/engine/events/SetPortValue.cpp index 4078b7c2..cd845d3f 100644 --- a/src/engine/events/SetPortValue.cpp +++ b/src/engine/events/SetPortValue.cpp @@ -42,7 +42,7 @@ using namespace Shared; /** Omni (all voices) control setting */ -SetPortValueEvent::SetPortValueEvent(Engine& engine, +SetPortValue::SetPortValue(Engine& engine, SharedPtr responder, bool queued, SampleCount timestamp, @@ -61,7 +61,7 @@ SetPortValueEvent::SetPortValueEvent(Engine& engine, /** Voice-specific control setting */ -SetPortValueEvent::SetPortValueEvent(Engine& engine, +SetPortValue::SetPortValue(Engine& engine, SharedPtr responder, bool queued, SampleCount timestamp, @@ -80,13 +80,13 @@ SetPortValueEvent::SetPortValueEvent(Engine& engine, } -SetPortValueEvent::~SetPortValueEvent() +SetPortValue::~SetPortValue() { } void -SetPortValueEvent::pre_process() +SetPortValue::pre_process() { if (_queued) { if (_port == NULL) @@ -107,7 +107,7 @@ SetPortValueEvent::pre_process() void -SetPortValueEvent::execute(ProcessContext& context) +SetPortValue::execute(ProcessContext& context) { Event::execute(context); assert(_time >= context.start() && _time <= context.end()); @@ -120,7 +120,7 @@ SetPortValueEvent::execute(ProcessContext& context) void -SetPortValueEvent::apply(uint32_t start, uint32_t nframes) +SetPortValue::apply(uint32_t start, uint32_t nframes) { if (_error == NO_ERROR && !_port) _port = _engine.engine_store()->find_port(_port_path); @@ -195,7 +195,7 @@ SetPortValueEvent::apply(uint32_t start, uint32_t nframes) void -SetPortValueEvent::post_process() +SetPortValue::post_process() { string msg; std::ostringstream ss; -- cgit v1.2.1