From 6178329ac029b44b7b9b4cfd7185b65aeb3269a9 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sat, 7 Apr 2007 02:13:23 +0000 Subject: 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 --- src/libs/client/DeprecatedLoader.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/libs/client') 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"))) { -- cgit v1.2.1