diff options
author | David Robillard <d@drobilla.net> | 2008-06-23 18:45:53 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-06-23 18:45:53 +0000 |
commit | 3689d2315e3c52cb36f571e244e8a0b1060c4394 (patch) | |
tree | d403f94927b8b16174fa6bc817d4a23faa1f9e06 /src | |
parent | 44b42a076c4be6f1e544e018879449ca9307696b (diff) | |
download | ingen-3689d2315e3c52cb36f571e244e8a0b1060c4394.tar.gz ingen-3689d2315e3c52cb36f571e244e8a0b1060c4394.tar.bz2 ingen-3689d2315e3c52cb36f571e244e8a0b1060c4394.zip |
Formatting.
git-svn-id: http://svn.drobilla.net/lad/ingen@1272 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r-- | src/libs/engine/events/SetPortValueEvent.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/libs/engine/events/SetPortValueEvent.cpp b/src/libs/engine/events/SetPortValueEvent.cpp index dd8767d7..36f60809 100644 --- a/src/libs/engine/events/SetPortValueEvent.cpp +++ b/src/libs/engine/events/SetPortValueEvent.cpp @@ -34,20 +34,20 @@ namespace Ingen { /** Omni (all voices) control setting */ -SetPortValueEvent::SetPortValueEvent(Engine& engine, +SetPortValueEvent::SetPortValueEvent(Engine& engine, SharedPtr<Responder> responder, SampleCount timestamp, const string& port_path, uint32_t data_size, const void* data) -: Event(engine, responder, timestamp), - _omni(true), - _voice_num(0), - _port_path(port_path), - _data_size(data_size), - _data(malloc(data_size)), - _port(NULL), - _error(NO_ERROR) + : Event(engine, responder, timestamp) + , _omni(true) + , _voice_num(0) + , _port_path(port_path) + , _data_size(data_size) + , _data(malloc(data_size)) + , _port(NULL) + , _error(NO_ERROR) { memcpy(_data, data, data_size); } |