diff options
author | Florian Jung <flo@windfisch.org> | 2013-08-20 15:49:23 +0200 |
---|---|---|
committer | Florian Jung <flo@windfisch.org> | 2013-08-20 15:49:23 +0200 |
commit | 4cf6f955d6f88f520121d15a82de26e3dc33e516 (patch) | |
tree | ac2d3d4e6ef9af1f400e1d7fe71524afd3cb79a9 /muse2 | |
parent | d308ae99892b9413da9f134347e84746dea0a943 (diff) |
tiny fix
Diffstat (limited to 'muse2')
-rw-r--r-- | muse2/muse/song.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/muse2/muse/song.cpp b/muse2/muse/song.cpp index be682f3e..5c755a9d 100644 --- a/muse2/muse/song.cpp +++ b/muse2/muse/song.cpp @@ -2645,7 +2645,7 @@ int Song::execMidiAutomationCtlPopup(MidiTrack* track, MidiPart* part, const QPo if(tick >= partStart && tick < partEnd) { EventRange range = part->events().equal_range(tick - partStart); - for(iEvent i = range.first; i != range.second; ++i) + for(ciEvent i = range.first; i != range.second; ++i) { ev = i->second; if(ev.type() == Controller) |