From fa8c25fd08953b6b14b22faa807a5446cec7294c Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 8 Jan 2007 04:26:52 +0000 Subject: Fix for building against local raul. Fix for some LADSPA plugins where munged port names weren't unique. git-svn-id: http://svn.drobilla.net/lad/ingen@243 a436a847-0d15-0410-975c-d299462d15a1 --- src/libs/engine/ObjectStore.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/libs/engine/ObjectStore.cpp') diff --git a/src/libs/engine/ObjectStore.cpp b/src/libs/engine/ObjectStore.cpp index 852d734b..87005d1f 100644 --- a/src/libs/engine/ObjectStore.cpp +++ b/src/libs/engine/ObjectStore.cpp @@ -69,7 +69,7 @@ ObjectStore::find(const Path& path) void ObjectStore::add(GraphObject* o) { - //cerr << "[ObjectStore] Adding " << o->path() << endl; + cerr << "[ObjectStore] Adding " << o->path() << endl; m_objects.insert(new TreeNode(o->path(), o)); } @@ -79,7 +79,7 @@ ObjectStore::add(GraphObject* o) void ObjectStore::add(TreeNode* tn) { - //cerr << "[ObjectStore] Adding " << tn->key() << endl; + cerr << "[ObjectStore] Adding " << tn->key() << endl; m_objects.insert(tn); } @@ -97,8 +97,8 @@ ObjectStore::remove(const string& path) if (removed == NULL) cerr << "[ObjectStore] WARNING: Removing " << path << " failed." << endl; - //else - // cerr << "[ObjectStore] Removed " << path << endl; + else + cerr << "[ObjectStore] Removed " << path << endl; return removed; } -- cgit v1.2.1