Fix paul's spacey tabs mucking up everything :)

git-svn-id: svn://localhost/ardour2/branches/3.0@3761 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
David Robillard 2008-09-19 14:55:46 +00:00
parent 6f8cd63450
commit fa4bca989b
3 changed files with 4 additions and 4 deletions

View File

@ -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];

View File

@ -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;

View File

@ -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; }