mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 08:36:32 +01:00
Add missed parent class call to Sequence::control_list_marked_dirty. Fixes #4335.
git-svn-id: svn://localhost/ardour2/branches/3.0@10140 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
90a2cc0746
commit
20dc91d0ad
2 changed files with 4 additions and 2 deletions
|
|
@ -1950,5 +1950,7 @@ MidiModel::transpose (TimeType from, TimeType to, int semitones)
|
|||
void
|
||||
MidiModel::control_list_marked_dirty ()
|
||||
{
|
||||
AutomatableSequence<Evoral::MusicalTime>::control_list_marked_dirty ();
|
||||
|
||||
ContentsChanged (); /* EMIT SIGNAL */
|
||||
}
|
||||
|
|
|
|||
|
|
@ -298,6 +298,8 @@ protected:
|
|||
inline Pitches& pitches(uint8_t chan) { return _pitches[chan&0xf]; }
|
||||
inline const Pitches& pitches(uint8_t chan) const { return _pitches[chan&0xf]; }
|
||||
|
||||
virtual void control_list_marked_dirty ();
|
||||
|
||||
private:
|
||||
friend class const_iterator;
|
||||
|
||||
|
|
@ -313,8 +315,6 @@ private:
|
|||
void get_notes_by_pitch (Notes&, NoteOperator, uint8_t val, int chan_mask = 0) const;
|
||||
void get_notes_by_velocity (Notes&, NoteOperator, uint8_t val, int chan_mask = 0) const;
|
||||
|
||||
virtual void control_list_marked_dirty ();
|
||||
|
||||
const TypeMap& _type_map;
|
||||
|
||||
Notes _notes; // notes indexed by time
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue