summaryrefslogtreecommitdiff
path: root/libs/ardour/processor.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-10-14 16:10:01 +0000
committerDavid Robillard <d@drobilla.net>2009-10-14 16:10:01 +0000
commitbb9cc45cd22af67ac275a5e73accbe14fee664d8 (patch)
treee52977d3eae6ff07b856088041a080a2fa3e5b79 /libs/ardour/processor.cc
parent8c4ce1e2ce35571aed5a686671431fdfffae7f8c (diff)
Strip trailing whitespace and fix other whitespace errors (e.g. space/tab mixing). Whitespace changes only.
Vimmers, try let c_space_errors = 1 in your .vimrc to highlight this kind of stuff in red. I don't know the emacs equivalent... git-svn-id: svn://localhost/ardour2/branches/3.0@5773 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/processor.cc')
-rw-r--r--libs/ardour/processor.cc28
1 files changed, 14 insertions, 14 deletions
diff --git a/libs/ardour/processor.cc b/libs/ardour/processor.cc
index 6f32afc925..c8f7a136bb 100644
--- a/libs/ardour/processor.cc
+++ b/libs/ardour/processor.cc
@@ -1,5 +1,5 @@
/*
- Copyright (C) 2000 Paul Davis
+ Copyright (C) 2000 Paul Davis
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -92,8 +92,8 @@ Processor::get_state (void)
return state (true);
}
-/* NODE STRUCTURE
-
+/* NODE STRUCTURE
+
<Automation [optionally with visible="...." ]>
<parameter-N>
<AutomationList id=N>
@@ -112,18 +112,18 @@ Processor::state (bool full_state)
XMLNode* node = new XMLNode (state_node_name);
stringstream sstr;
char buf[64];
-
+
id().print (buf, sizeof (buf));
node->add_property("id", buf);
node->add_property("name", _name);
- node->add_property("active", active() ? "yes" : "no");
+ node->add_property("active", active() ? "yes" : "no");
if (_extra_xml){
node->add_child_copy (*_extra_xml);
}
-
+
if (full_state) {
- XMLNode& automation = Automatable::get_automation_state();
+ XMLNode& automation = Automatable::get_automation_state();
if (!automation.children().empty()
|| !automation.properties().empty()
|| !_visible_controls.empty()) {
@@ -158,7 +158,7 @@ Processor::set_state (const XMLNode& node)
// may not exist for legacy 3.0 sessions
if ((prop = node.property ("id")) != 0) {
_id = prop->value();
- }
+ }
XMLNodeList nlist = node.children();
XMLNodeIterator niter;
@@ -168,7 +168,7 @@ Processor::set_state (const XMLNode& node)
if ((*niter)->name() == X_("Automation")) {
XMLProperty *prop;
-
+
if ((prop = (*niter)->property ("path")) != 0) {
old_set_automation_state (*(*niter));
} else {
@@ -180,7 +180,7 @@ Processor::set_state (const XMLNode& node)
stringstream sstr;
_visible_controls.clear ();
-
+
sstr << prop->value();
while (1) {
sstr >> what;
@@ -215,7 +215,7 @@ Processor::set_state (const XMLNode& node)
if (_active != string_is_affirmative (prop->value())) {
_active = !_active;
ActiveChanged (); /* EMIT_SIGNAL */
- }
+ }
return 0;
}
@@ -225,11 +225,11 @@ Processor::configure_io (ChanCount in, ChanCount out)
{
/* This class assumes 1:1 input:output.static output stream count.
Derived classes must override and set _configured_output appropriately
- if this is not the case
+ if this is not the case
*/
- _configured_input = in;
- _configured_output = out;
+ _configured_input = in;
+ _configured_output = out;
_configured = true;
ConfigurationChanged.emit (in, out);