summaryrefslogtreecommitdiff
path: root/libs/evoral/src/Sequence.cpp
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-06-21 21:29:22 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-06-21 21:29:22 +0000
commitbe614d0538ddd78b13b236f760afbd94af540202 (patch)
treef437fc23359b43969d369e867146e67244c72ad7 /libs/evoral/src/Sequence.cpp
parent500aaa0deeb386df94fddc4474aa6de43331becb (diff)
change default overlapping note strategy to "relax" (i.e. do nothing); fix crash when looping with MIDI data; add back note-off resolution at loop point (if it was actually there) so that notes are turned off (but don't forget Ye Olde Sustain Pedal/Controller) when looping; minor other non-functional tweaks
git-svn-id: svn://localhost/ardour2/branches/3.0@9753 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/evoral/src/Sequence.cpp')
-rw-r--r--libs/evoral/src/Sequence.cpp16
1 files changed, 14 insertions, 2 deletions
diff --git a/libs/evoral/src/Sequence.cpp b/libs/evoral/src/Sequence.cpp
index 3c1bda9b96..1d91690a61 100644
--- a/libs/evoral/src/Sequence.cpp
+++ b/libs/evoral/src/Sequence.cpp
@@ -687,7 +687,7 @@ Sequence<Time>::add_note_unlocked(const NotePtr note, void* arg)
_edited = true;
- return true;
+ return true;
}
template<typename Time>
@@ -750,7 +750,7 @@ Sequence<Time>::remove_note_unlocked(const constNotePtr note)
}
if (!erased) {
- cerr << "Unable to find note to erase" << endl;
+ cerr << "Unable to find note to erase matching " << *note.get() << endl;
}
}
@@ -1214,5 +1214,17 @@ Sequence<Time>::control_list_marked_dirty ()
template class Sequence<Evoral::MusicalTime>;
+template<typename Time>
+void
+Sequence<Time>::dump (ostream& str) const
+{
+ Sequence<Time>::const_iterator i;
+ str << "+++ dump\n";
+ for (i = begin(); i != end(); ++i) {
+ str << *i << endl;
+ }
+ str << "--- dump\n";
+}
+
} // namespace Evoral