summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-06-09 21:30:32 +0000
committerDavid Robillard <d@drobilla.net>2009-06-09 21:30:32 +0000
commitd1e7733a4a2eda4ce39dfd60d6410fb28ec69479 (patch)
treee9991581e7a4648e15caeb3b46136c7043e61e5a
parent318fb3a0694c6a3533cd6068069b3417c74c39e0 (diff)
<port> => <Port>
git-svn-id: svn://localhost/ardour2/branches/3.0@5140 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--libs/ardour/io.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/ardour/io.cc b/libs/ardour/io.cc
index a5d4e639e3..4a762c8eb7 100644
--- a/libs/ardour/io.cc
+++ b/libs/ardour/io.cc
@@ -495,7 +495,7 @@ IO::state (bool full_state)
vector<string> connections;
- XMLNode* pnode = new XMLNode (X_("port"));
+ XMLNode* pnode = new XMLNode (X_("Port"));
pnode->add_property (X_("type"), i->type().to_string());
if (i->get_connections (connections)) {
@@ -716,7 +716,7 @@ IO::get_port_counts (const XMLNode& node, ChanCount& n, boost::shared_ptr<Bundle
}
}
- if ((*iter)->name() == X_("port")) {
+ if ((*iter)->name() == X_("Port")) {
prop = (*iter)->property (X_("type"));
if (!prop) {
@@ -790,7 +790,7 @@ IO::make_connections (const XMLNode& node)
return 0;
}
- if ((*i)->name() == "port") {
+ if ((*i)->name() == "Port") {
Port* p = nth (n++);
XMLProperty* prop = (*i)->property ("connection");
if (p && prop) {