summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-10-19 03:49:04 +0000
committerDavid Robillard <d@drobilla.net>2009-10-19 03:49:04 +0000
commit418cc6ec2f2c8710c906dab9f07fe0ffb7ba278b (patch)
tree8cc4d65c1ec69a33b56a0dc110ed0b14559eb7d3 /src
parent8ae4bfebfc318f9cb938c198ceb8410c20ab907a (diff)
downloadingen-418cc6ec2f2c8710c906dab9f07fe0ffb7ba278b.tar.gz
ingen-418cc6ec2f2c8710c906dab9f07fe0ffb7ba278b.tar.bz2
ingen-418cc6ec2f2c8710c906dab9f07fe0ffb7ba278b.zip
Tidy.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2196 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r--src/engine/events/SetPortValue.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/engine/events/SetPortValue.cpp b/src/engine/events/SetPortValue.cpp
index 55919828..ba906705 100644
--- a/src/engine/events/SetPortValue.cpp
+++ b/src/engine/events/SetPortValue.cpp
@@ -43,11 +43,11 @@ using namespace Shared;
/** Omni (all voices) control setting */
SetPortValue::SetPortValue(Engine& engine,
- SharedPtr<Responder> responder,
- bool queued,
- SampleCount timestamp,
- const Raul::Path& port_path,
- const Raul::Atom& value)
+ SharedPtr<Responder> responder,
+ bool queued,
+ SampleCount timestamp,
+ const Raul::Path& port_path,
+ const Raul::Atom& value)
: QueuedEvent(engine, responder, timestamp)
, _queued(queued)
, _omni(true)
@@ -62,12 +62,12 @@ SetPortValue::SetPortValue(Engine& engine,
/** Voice-specific control setting */
SetPortValue::SetPortValue(Engine& engine,
- SharedPtr<Responder> responder,
- bool queued,
- SampleCount timestamp,
- uint32_t voice_num,
- const Raul::Path& port_path,
- const Raul::Atom& value)
+ SharedPtr<Responder> responder,
+ bool queued,
+ SampleCount timestamp,
+ uint32_t voice_num,
+ const Raul::Path& port_path,
+ const Raul::Atom& value)
: QueuedEvent(engine, responder, timestamp)
, _queued(queued)
, _omni(false)