aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine/ActionFactory.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-04-16 19:02:36 +0000
committerDavid Robillard <d@drobilla.net>2011-04-16 19:02:36 +0000
commitbf0d5e8785d4fdb258f907cc092fb3670cff020e (patch)
treed2bbaef3bbaec2b0d30ec8c612f485f4ea5ccf06 /src/engine/ActionFactory.cpp
parentdf347f2545a8f39d55f7320a2f43b16dc0f2f32a (diff)
downloadmachina-bf0d5e8785d4fdb258f907cc092fb3670cff020e.tar.gz
machina-bf0d5e8785d4fdb258f907cc092fb3670cff020e.tar.bz2
machina-bf0d5e8785d4fdb258f907cc092fb3670cff020e.zip
Squeeze blank lines and delete trailing whitespace.
git-svn-id: http://svn.drobilla.net/lad/trunk/machina@3152 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/ActionFactory.cpp')
-rw-r--r--src/engine/ActionFactory.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/engine/ActionFactory.cpp b/src/engine/ActionFactory.cpp
index d5fc954..6e8635d 100644
--- a/src/engine/ActionFactory.cpp
+++ b/src/engine/ActionFactory.cpp
@@ -30,7 +30,6 @@ ActionFactory::copy(SharedPtr<Action> copy)
return SharedPtr<Action>();
}
-
SharedPtr<Action>
ActionFactory::note_on(unsigned char note)
{
@@ -42,7 +41,6 @@ ActionFactory::note_on(unsigned char note)
return SharedPtr<Action>(new MidiAction(3, buf));
}
-
SharedPtr<Action>
ActionFactory::note_off(unsigned char note)
{
@@ -54,6 +52,5 @@ ActionFactory::note_off(unsigned char note)
return SharedPtr<Action>(new MidiAction(3, buf));
}
-
} // namespace Machine