summaryrefslogtreecommitdiff
path: root/libs/ardour/panner.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-02-15 03:21:30 +0000
committerDavid Robillard <d@drobilla.net>2009-02-15 03:21:30 +0000
commit9462374e29596fde2180b0e38b8aaec3b0a3f01e (patch)
tree8fc88529af5be3a854c4c952985b796d9c121edf /libs/ardour/panner.cc
parent74ff55f835656f617f1c508508cda49ac5836c91 (diff)
Session XML style consistency (tag names are capitalized).
One thing left, this weird "end-marker-is-free" in <Config>. Is this really a config option? Anyone? git-svn-id: svn://localhost/ardour2/branches/3.0@4577 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/panner.cc')
-rw-r--r--libs/ardour/panner.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/panner.cc b/libs/ardour/panner.cc
index a7cf405190..b7dfd79068 100644
--- a/libs/ardour/panner.cc
+++ b/libs/ardour/panner.cc
@@ -498,7 +498,7 @@ EqualPowerStereoPanner::set_state (const XMLNode& node)
for (XMLNodeConstIterator iter = node.children().begin(); iter != node.children().end(); ++iter) {
- if ((*iter)->name() == X_("controllable")) {
+ if ((*iter)->name() == X_("Controllable")) {
if ((prop = (*iter)->property("name")) != 0 && prop->value() == "panner") {
_control->set_state (**iter);
}