summaryrefslogtreecommitdiffstats
path: root/src/engine/events/MidiLearn.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/MidiLearn.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/MidiLearn.cpp')
-rw-r--r--src/engine/events/MidiLearn.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/engine/events/MidiLearn.cpp b/src/engine/events/MidiLearn.cpp
index 00ea4f75..c475833b 100644
--- a/src/engine/events/MidiLearn.cpp
+++ b/src/engine/events/MidiLearn.cpp
@@ -30,7 +30,7 @@ namespace Ingen {
namespace Events {
-MidiLearnEvent::MidiLearnEvent(Engine& engine, SharedPtr<Responder> responder, SampleCount timestamp, const Raul::Path& node_path)
+MidiLearn::MidiLearn(Engine& engine, SharedPtr<Responder> responder, SampleCount timestamp, const Raul::Path& node_path)
: QueuedEvent(engine, responder, timestamp)
, _error(NO_ERROR)
, _node_path(node_path)
@@ -40,7 +40,7 @@ MidiLearnEvent::MidiLearnEvent(Engine& engine, SharedPtr<Responder> responder, S
void
-MidiLearnEvent::pre_process()
+MidiLearn::pre_process()
{
_node = _engine.engine_store()->find_node(_node_path);
@@ -49,7 +49,7 @@ MidiLearnEvent::pre_process()
void
-MidiLearnEvent::execute(ProcessContext& context)
+MidiLearn::execute(ProcessContext& context)
{
QueuedEvent::execute(context);
@@ -64,7 +64,7 @@ MidiLearnEvent::execute(ProcessContext& context)
void
-MidiLearnEvent::post_process()
+MidiLearn::post_process()
{
if (_error == NO_ERROR) {
_responder->respond_ok();