summaryrefslogtreecommitdiffstats
path: root/src/client/ClientStore.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/client/ClientStore.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/client/ClientStore.cpp')
-rw-r--r--src/client/ClientStore.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/ClientStore.cpp b/src/client/ClientStore.cpp
index 0079010c..cdfeb276 100644
--- a/src/client/ClientStore.cpp
+++ b/src/client/ClientStore.cpp
@@ -268,10 +268,10 @@ void
ClientStore::put(const URI& uri, const Resource::Properties& properties)
{
typedef Resource::Properties::const_iterator iterator;
- cerr << "CLIENT PUT " << uri << " {" << endl;
+ /*cerr << "CLIENT PUT " << uri << " {" << endl;
for (iterator i = properties.begin(); i != properties.end(); ++i)
cerr << "\t" << i->first << " = " << i->second << " :: " << i->second.type() << endl;
- cerr << "}" << endl;
+ cerr << "}" << endl;*/
bool is_path = Path::is_valid(uri.str());
bool is_meta = uri.substr(0, 8) == "meta:#";