summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/automation_control.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-06-09 23:24:37 +0200
committerRobin Gareus <robin@gareus.org>2017-06-09 23:25:42 +0200
commit18db6e3f508cb124b8fb034d335a24afb4935ca3 (patch)
tree5d2f20d75eb19f4d4fb0c47bcc7d29d1f02ac804 /libs/ardour/ardour/automation_control.h
parenta1b4f9b8abf2887b17bce05403ea7eab2421f26a (diff)
NO-OP: whitespace
Diffstat (limited to 'libs/ardour/ardour/automation_control.h')
-rw-r--r--libs/ardour/ardour/automation_control.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/ardour/ardour/automation_control.h b/libs/ardour/ardour/automation_control.h
index e338cb13c1..a16929afa5 100644
--- a/libs/ardour/ardour/automation_control.h
+++ b/libs/ardour/ardour/automation_control.h
@@ -53,7 +53,7 @@ class LIBARDOUR_API AutomationControl
, public boost::enable_shared_from_this<AutomationControl>
, public ControlGroupMember
{
- public:
+public:
AutomationControl(ARDOUR::Session&,
const Evoral::Parameter& parameter,
const ParameterDescriptor& desc,
@@ -123,7 +123,7 @@ class LIBARDOUR_API AutomationControl
const ARDOUR::Session& session() const { return _session; }
void commit_transaction (bool did_write);
- protected:
+protected:
ARDOUR::Session& _session;
boost::shared_ptr<ControlGroup> _group;
@@ -147,7 +147,7 @@ class LIBARDOUR_API AutomationControl
/* this will be invoked in turn on behalf of the group or the control by itself */
virtual void do_pre_realtime_queue_stuff (double new_value) {}
- private:
+private:
/* I am unclear on why we have to make ControlGroup a friend in order
to get access to the ::set_group() method when it is already
declared to be a friend in ControlGroupMember. Oh well.