summaryrefslogtreecommitdiff
path: root/libs/evoral
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-10-19 14:08:20 +0000
committerDavid Robillard <d@drobilla.net>2009-10-19 14:08:20 +0000
commit8d4bf70c7e40429e0a3ba2686f30c7c38871532f (patch)
treea1bc4dfc5af2523c8c691fb5e41ac3634e944d27 /libs/evoral
parent52607dd6ef3df53ac770dafc0411522de8d27dce (diff)
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
Diffstat (limited to 'libs/evoral')
-rw-r--r--libs/evoral/evoral/Event.hpp2
-rw-r--r--libs/evoral/evoral/Sequence.hpp2
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<boost::shared_ptr<Note<Time> > >&);
+ void set_notes (const Sequence<Time>::Notes& n);
typedef std::vector< boost::shared_ptr< Event<Time> > > SysExes;
inline SysExes& sysexes() { return _sysexes; }