diff options
author | David Robillard <d@drobilla.net> | 2007-07-26 16:19:58 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-07-26 16:19:58 +0000 |
commit | 6af49fb89facc67f369ede8cce6c315fd705d3cc (patch) | |
tree | 2ac10884581eccf828e8ad96f33d619bbff2b0ba /src/libs/engine/events | |
parent | f7368e7850307de97b024238a4f520afe1150c8b (diff) | |
download | ingen-6af49fb89facc67f369ede8cce6c315fd705d3cc.tar.gz ingen-6af49fb89facc67f369ede8cce6c315fd705d3cc.tar.bz2 ingen-6af49fb89facc67f369ede8cce6c315fd705d3cc.zip |
Fix various Table bugs (and put some way too slow code in there, but hey, it works).
Use PathTable for models on the client side.
Implement renaming on client side.
git-svn-id: http://svn.drobilla.net/lad/ingen@636 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/events')
-rw-r--r-- | src/libs/engine/events/ConnectionEvent.cpp | 1 | ||||
-rw-r--r-- | src/libs/engine/events/DisconnectionEvent.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/libs/engine/events/ConnectionEvent.cpp b/src/libs/engine/events/ConnectionEvent.cpp index c1fd3180..554a974f 100644 --- a/src/libs/engine/events/ConnectionEvent.cpp +++ b/src/libs/engine/events/ConnectionEvent.cpp @@ -170,6 +170,7 @@ ConnectionEvent::post_process() // FIXME: better error messages string msg = "Unable to make connection "; msg.append(_src_port_path + " -> " + _dst_port_path); + cerr << "CONNECTION ERROR " << (unsigned)_error << endl; _responder->respond_error(msg); } } diff --git a/src/libs/engine/events/DisconnectionEvent.cpp b/src/libs/engine/events/DisconnectionEvent.cpp index ba35f84e..dc78a118 100644 --- a/src/libs/engine/events/DisconnectionEvent.cpp +++ b/src/libs/engine/events/DisconnectionEvent.cpp @@ -192,6 +192,7 @@ DisconnectionEvent::post_process() // FIXME: better error messages string msg = "Unable to disconnect "; msg.append(_src_port_path + " -> " + _dst_port_path); + cerr << "DISCONNECTION ERROR " << (unsigned)_error << endl; _responder->respond_error(msg); } } |