From f7368e7850307de97b024238a4f520afe1150c8b Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 26 Jul 2007 09:32:49 +0000 Subject: Add const find interface to Raul::Table, fix bugs. Use Raul::Table on Ingen client side instead of std::map for objects, plugins. Work on renaming (still broken). git-svn-id: http://svn.drobilla.net/lad/ingen@634 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/client/PortModel.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/libs/client/PortModel.hpp') diff --git a/src/libs/client/PortModel.hpp b/src/libs/client/PortModel.hpp index 25573226..cf8b94f0 100644 --- a/src/libs/client/PortModel.hpp +++ b/src/libs/client/PortModel.hpp @@ -85,7 +85,7 @@ private: } void add_child(SharedPtr c) { throw; } - void remove_child(SharedPtr c) { throw; } + bool remove_child(SharedPtr c) { throw; } void connected_to(SharedPtr p) { ++_connections; connection_sig.emit(p); } void disconnected_from(SharedPtr p) { --_connections; disconnection_sig.emit(p); } -- cgit v1.2.1