From 8d4bf70c7e40429e0a3ba2686f30c7c38871532f Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 19 Oct 2009 14:08:20 +0000 Subject: [PATCH] Fix set_notes prototype to use typedef. Fix spacey tabs. git-svn-id: svn://localhost/ardour2/branches/3.0@5795 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/evoral/evoral/Event.hpp | 2 +- libs/evoral/evoral/Sequence.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/evoral/evoral/Event.hpp b/libs/evoral/evoral/Event.hpp index 2f53185c09..75dfbdbe3a 100644 --- a/libs/evoral/evoral/Event.hpp +++ b/libs/evoral/evoral/Event.hpp @@ -184,7 +184,7 @@ struct Event { protected: EventType _type; /**< Type of event (application relative, NOT MIDI 'type') */ Time _original_time; /**< Sample index (or beat time) at which event is valid */ - Time _nominal_time; /**< quantized version of _time, used in preference */ + Time _nominal_time; /**< Quantized version of _time, used in preference */ uint32_t _size; /**< Number of uint8_ts of data in \a buffer */ uint8_t* _buf; /**< Raw MIDI data */ diff --git a/libs/evoral/evoral/Sequence.hpp b/libs/evoral/evoral/Sequence.hpp index 026a8ab74f..b4e11ba808 100644 --- a/libs/evoral/evoral/Sequence.hpp +++ b/libs/evoral/evoral/Sequence.hpp @@ -112,7 +112,7 @@ public: inline Notes& notes() { return _notes; } inline const Notes& notes() const { return _notes; } - void set_notes (const std::vector > >&); + void set_notes (const Sequence