From bded96269f8b3fdd5d7f7a7d830c9e353dae3eb2 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 12 May 2008 23:34:35 +0000 Subject: Remove junk from MidiModel::write_to git-svn-id: svn://localhost/ardour2/branches/3.0@3341 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/midi_model.cc | 20 -------------------- 1 file changed, 20 deletions(-) (limited to 'libs') diff --git a/libs/ardour/midi_model.cc b/libs/ardour/midi_model.cc index a85d00f49e..10e8991805 100644 --- a/libs/ardour/midi_model.cc +++ b/libs/ardour/midi_model.cc @@ -893,34 +893,14 @@ struct EventTimeComparator { */ bool MidiModel::write_to(boost::shared_ptr source) { - /* - EventTimeComparator comp; - typedef std::priority_queue< - const MIDI::Event*, - std::deque, - EventTimeComparator> MidiEvents; - - MidiEvents events(comp); - */ - read_lock(); const NoteMode old_note_mode = _note_mode; _note_mode = Sustained; for (const_iterator i = begin(); i != end(); ++i) { - //events.push(*i); source->append_event_unlocked(Frames, *i); } - - /* - // TODO: As of now, this is still necessary, because there are some events appended whose - // times are earlier than the preceding events - while(!events.empty()) { - source->append_event_unlocked(Frames, events.top()); - events.pop(); - } - */ _note_mode = old_note_mode; -- cgit v1.2.3