summaryrefslogtreecommitdiffstats
path: root/src/libs/client/DeprecatedLoader.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-04-07 02:13:23 +0000
committerDavid Robillard <d@drobilla.net>2007-04-07 02:13:23 +0000
commit6178329ac029b44b7b9b4cfd7185b65aeb3269a9 (patch)
tree1d981815a53f6636ab13eb94978679900b1d5255 /src/libs/client/DeprecatedLoader.cpp
parent5c8bc74d3ca5b2197db50f0ce072bd3e75db8975 (diff)
downloadingen-6178329ac029b44b7b9b4cfd7185b65aeb3269a9.tar.gz
ingen-6178329ac029b44b7b9b4cfd7185b65aeb3269a9.tar.bz2
ingen-6178329ac029b44b7b9b4cfd7185b65aeb3269a9.zip
Fixed connection to patch MIDI ports when loading deprecated patches.
Fixes for auto-arrange in Ingen. git-svn-id: http://svn.drobilla.net/lad/ingen@411 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/client/DeprecatedLoader.cpp')
-rw-r--r--src/libs/client/DeprecatedLoader.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libs/client/DeprecatedLoader.cpp b/src/libs/client/DeprecatedLoader.cpp
index 72c397d2..f174fb1e 100644
--- a/src/libs/client/DeprecatedLoader.cpp
+++ b/src/libs/client/DeprecatedLoader.cpp
@@ -329,7 +329,9 @@ DeprecatedLoader::load_node(const Path& parent, xmlDocPtr doc, const xmlNodePtr
key = xmlNodeListGetString(doc, cur->xmlChildrenNode, 1);
if ((!xmlStrcmp(cur->name, (const xmlChar*)"name"))) {
+ cerr << "NAME: " << (char*)key;
path = parent.base() + Path::nameify((char*)key);
+ cerr << ", PATH: " << path << endl;
} else if ((!xmlStrcmp(cur->name, (const xmlChar*)"polyphonic"))) {
polyphonic = !strcmp((char*)key, "true");
} else if ((!xmlStrcmp(cur->name, (const xmlChar*)"type"))) {