summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-09-19 14:55:46 +0000
committerDavid Robillard <d@drobilla.net>2008-09-19 14:55:46 +0000
commitfa4bca989b18259456ec713b8f02e061ec8bc8e2 (patch)
tree3a9e767a1db9bbde496509f45cf1d2c62d1515dc
parent6f8cd634501efd70711b148b4ac0e0ce2aa5cc95 (diff)
Fix paul's spacey tabs mucking up everything :)
git-svn-id: svn://localhost/ardour2/branches/3.0@3761 d708f5d6-7413-0410-9779-e7cbd77b26cf
-rw-r--r--libs/evoral/evoral/ControlList.hpp4
-rw-r--r--libs/evoral/evoral/EventSink.hpp2
-rw-r--r--libs/evoral/evoral/Parameter.hpp2
3 files changed, 4 insertions, 4 deletions
diff --git a/libs/evoral/evoral/ControlList.hpp b/libs/evoral/evoral/ControlList.hpp
index bc994d90c8..1b2b46b10b 100644
--- a/libs/evoral/evoral/ControlList.hpp
+++ b/libs/evoral/evoral/ControlList.hpp
@@ -47,9 +47,9 @@ struct ControlEvent {
}
}
- ~ControlEvent() { if (coeff) delete[] coeff; }
+ ~ControlEvent() { if (coeff) delete[] coeff; }
- void create_coeffs() {
+ void create_coeffs() {
if (!coeff)
coeff = new double[4];
diff --git a/libs/evoral/evoral/EventSink.hpp b/libs/evoral/evoral/EventSink.hpp
index 67b33d6965..5f0610e15f 100644
--- a/libs/evoral/evoral/EventSink.hpp
+++ b/libs/evoral/evoral/EventSink.hpp
@@ -28,7 +28,7 @@ namespace Evoral {
*/
class EventSink {
public:
- virtual ~EventSink() {}
+ virtual ~EventSink() {}
virtual size_t write(timestamp_t time,
uint32_t size,
const uint8_t* buf) = 0;
diff --git a/libs/evoral/evoral/Parameter.hpp b/libs/evoral/evoral/Parameter.hpp
index a88483aec4..1ff01df197 100644
--- a/libs/evoral/evoral/Parameter.hpp
+++ b/libs/evoral/evoral/Parameter.hpp
@@ -56,7 +56,7 @@ public:
std::cerr << "WARNING: Unable to create parameter from string: " << str << std::endl;
}
- virtual ~Parameter() {}
+ virtual ~Parameter() {}
inline uint32_t type() const { return _type; }
inline uint32_t id() const { return _id; }