summaryrefslogtreecommitdiff
path: root/libs/ardour/processor.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-04-13 01:44:46 +0000
committerDavid Robillard <d@drobilla.net>2011-04-13 01:44:46 +0000
commit852232ad279b1436d3fd075a745c262334c172f8 (patch)
treeeb31bf5e17cde1c1134d8147e7d844949e564c7e /libs/ardour/processor.cc
parent036174daf16b565b9d963a86cc5cca853ead1fa5 (diff)
Tolerate LV2 plugins that call persist/file state functions early.
git-svn-id: svn://localhost/ardour2/branches/3.0@9343 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/processor.cc')
-rw-r--r--libs/ardour/processor.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/ardour/processor.cc b/libs/ardour/processor.cc
index 66d45a4174..ef94d1b50a 100644
--- a/libs/ardour/processor.cc
+++ b/libs/ardour/processor.cc
@@ -68,7 +68,7 @@ Processor::Processor(Session& session, const string& name)
, _configured(false)
, _display_to_user (true)
, _pre_fader (false)
- , _ui_pointer (0)
+ , _ui_pointer (0)
{
}
@@ -82,7 +82,7 @@ Processor::Processor (const Processor& other)
, _configured(false)
, _display_to_user (true)
, _pre_fader (false)
- , _ui_pointer (0)
+ , _ui_pointer (0)
{
}
@@ -130,7 +130,7 @@ Processor::state (bool full_state)
stringstream sstr;
for (set<Evoral::Parameter>::iterator x = _visible_controls.begin();
x != _visible_controls.end(); ++x) {
-
+
if (x != _visible_controls.begin()) {
sstr << ' ';
}
@@ -298,5 +298,5 @@ Processor::set_pre_fader (bool p)
void
Processor::set_ui (void* p)
{
- _ui_pointer = p;
+ _ui_pointer = p;
}