summaryrefslogtreecommitdiffstats
path: root/src/engine/events/SetPortValue.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-06-03 01:25:01 +0000
committerDavid Robillard <d@drobilla.net>2009-06-03 01:25:01 +0000
commit5f71c5eecee673b0a1156d0fe56726750d17cb86 (patch)
treea1bf4bd3b18d3a95cfd2f52fadb9fd986182451e /src/engine/events/SetPortValue.cpp
parentf845aa9eaf46cfa2ad2427b62fa9062e7f6c7934 (diff)
downloadingen-5f71c5eecee673b0a1156d0fe56726750d17cb86.tar.gz
ingen-5f71c5eecee673b0a1156d0fe56726750d17cb86.tar.bz2
ingen-5f71c5eecee673b0a1156d0fe56726750d17cb86.zip
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
Diffstat (limited to 'src/engine/events/SetPortValue.cpp')
-rw-r--r--src/engine/events/SetPortValue.cpp14
1 files changed, 7 insertions, 7 deletions
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> 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> 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;