summaryrefslogtreecommitdiff
path: root/libs/evoral/evoral/ControlList.hpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-12-24 22:48:05 +0000
committerDavid Robillard <d@drobilla.net>2010-12-24 22:48:05 +0000
commitbffe0c4f9825b9609acba67dd574d895aa619b66 (patch)
treeb5ab65078edf2e726ea8dea30a0db4ee0dc3d096 /libs/evoral/evoral/ControlList.hpp
parent8e201d18a88d4cf4ca1163c32bdc2400c28ead8d (diff)
Fix broken whitespace.
git-svn-id: svn://localhost/ardour2/branches/3.0@8341 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/evoral/evoral/ControlList.hpp')
-rw-r--r--libs/evoral/evoral/ControlList.hpp40
1 files changed, 20 insertions, 20 deletions
diff --git a/libs/evoral/evoral/ControlList.hpp b/libs/evoral/evoral/ControlList.hpp
index 8b8083f31c..833fae4440 100644
--- a/libs/evoral/evoral/ControlList.hpp
+++ b/libs/evoral/evoral/ControlList.hpp
@@ -96,8 +96,8 @@ public:
bool operator== (const ControlList&);
virtual void freeze();
- virtual void thaw ();
- bool frozen() const { return _frozen; }
+ virtual void thaw ();
+ bool frozen() const { return _frozen; }
const Parameter& parameter() const { return _parameter; }
void set_parameter(const Parameter& p) { _parameter = p; }
@@ -113,12 +113,12 @@ public:
void x_scale (double factor);
bool extend_to (double);
void slide (iterator before, double distance);
- void shift (double before, double distance);
+ void shift (double before, double distance);
void rt_add (double when, double value);
void add (double when, double value);
void fast_simple_add (double when, double value);
- void merge_nascent (double when);
+ void merge_nascent (double when);
void reset_range (double start, double end);
void erase_range (double start, double end);
@@ -235,10 +235,10 @@ public:
InterpolationStyle interpolation() const { return _interpolation; }
void set_interpolation (InterpolationStyle);
- virtual bool touching() const { return false; }
- virtual bool writing() const { return false; }
- virtual bool touch_enabled() const { return false; }
- void write_pass_finished (double when);
+ virtual bool touching() const { return false; }
+ virtual bool writing() const { return false; }
+ virtual bool touch_enabled() const { return false; }
+ void write_pass_finished (double when);
/** Emitted when mark_dirty() is called on this object */
mutable PBD::Signal0<void> Dirty;
@@ -276,20 +276,20 @@ protected:
Curve* _curve;
- struct NascentInfo {
- EventList events;
- bool is_touch;
- double start_time;
- double end_time;
+ struct NascentInfo {
+ EventList events;
+ bool is_touch;
+ double start_time;
+ double end_time;
- NascentInfo (bool touching, double start = -1.0)
- : is_touch (touching)
- , start_time (start)
- , end_time (-1.0)
- {}
- };
+ NascentInfo (bool touching, double start = -1.0)
+ : is_touch (touching)
+ , start_time (start)
+ , end_time (-1.0)
+ {}
+ };
- std::list<NascentInfo*> nascent;
+ std::list<NascentInfo*> nascent;
};
} // namespace Evoral