diff options
author | David Robillard <d@drobilla.net> | 2008-08-17 03:10:58 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-08-17 03:10:58 +0000 |
commit | d6823fa9b29bcff74ca180e6d389d8a21cf88d1f (patch) | |
tree | b79dcfd907f83f035d657964d26b578c85ef0de2 /src/libs/engine/events | |
parent | 694b31089c8060fc6b908b146b12c0e340d004c7 (diff) | |
download | ingen-d6823fa9b29bcff74ca180e6d389d8a21cf88d1f.tar.gz ingen-d6823fa9b29bcff74ca180e6d389d8a21cf88d1f.tar.bz2 ingen-d6823fa9b29bcff74ca180e6d389d8a21cf88d1f.zip |
There!
Loader uses only CommonInterface and is now able to parse into a client or engine.
Proper OSC serialisation of boolean atoms.
Remove patch_enabled and patch_disabled calls/signals/etc in favour of new generic "property" mechanism (courtesy of which much more killed API is to come).
git-svn-id: http://svn.drobilla.net/lad/ingen@1410 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/events')
-rw-r--r-- | src/libs/engine/events/EnablePatchEvent.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/libs/engine/events/EnablePatchEvent.cpp b/src/libs/engine/events/EnablePatchEvent.cpp index 48657146..04759cea 100644 --- a/src/libs/engine/events/EnablePatchEvent.cpp +++ b/src/libs/engine/events/EnablePatchEvent.cpp @@ -75,10 +75,7 @@ EnablePatchEvent::post_process() { if (_patch != NULL) { _responder->respond_ok(); - if (_enable) - _engine.broadcaster()->send_patch_enable(_patch_path); - else - _engine.broadcaster()->send_patch_disable(_patch_path); + _engine.broadcaster()->send_property_change(_patch_path, "ingen:enabled", (bool)_enable); } else { _responder->respond_error(string("Patch ") + _patch_path + " not found"); } |