summaryrefslogtreecommitdiffstats
path: root/src/engine/QueuedEngineInterface.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-05-28 22:28:05 +0000
committerDavid Robillard <d@drobilla.net>2009-05-28 22:28:05 +0000
commit304454c63ea00b57b55bc2023e1d52fb51e8ef7f (patch)
tree9f3afdc3629139c0b43a3d9dfd10fc98f376ab28 /src/engine/QueuedEngineInterface.cpp
parent72e4e4c0c5c7d459f3a80e8cc9cdc755db61f23b (diff)
downloadingen-304454c63ea00b57b55bc2023e1d52fb51e8ef7f.tar.gz
ingen-304454c63ea00b57b55bc2023e1d52fb51e8ef7f.tar.bz2
ingen-304454c63ea00b57b55bc2023e1d52fb51e8ef7f.zip
Fix loading connections inside subpatches to patch ports.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2039 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/QueuedEngineInterface.cpp')
-rw-r--r--src/engine/QueuedEngineInterface.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/engine/QueuedEngineInterface.cpp b/src/engine/QueuedEngineInterface.cpp
index a6a3f1cd..cce6bb9d 100644
--- a/src/engine/QueuedEngineInterface.cpp
+++ b/src/engine/QueuedEngineInterface.cpp
@@ -155,16 +155,15 @@ void
QueuedEngineInterface::put(const URI& uri,
const Resource::Properties& properties)
{
- cerr << "PUT " << uri << endl;
size_t hash = uri.find("#");
bool meta = (hash != string::npos);
Path path(meta ? (string("/") + uri.chop_start("#")) : uri.str());
typedef Resource::Properties::const_iterator iterator;
- cerr << "ENGINE PUT " << path << " (" << path << ") {" << endl;
+ /*cerr << "ENGINE PUT " << path << " (" << path << ") {" << endl;
for (iterator i = properties.begin(); i != properties.end(); ++i)
cerr << "\t" << i->first << " = " << i->second << " :: " << i->second.type() << endl;
- cerr << "}" << endl;
+ cerr << "}" << endl;*/
push_queued(new SetMetadataEvent(_engine, _responder, now(), this, meta, path, properties));
}