Mercurial > hg > svgui
diff layer/NoteLayer.h @ 806:4c8ca536b54f warnfix_no_size_t
Some more unsigned/long removal
author | Chris Cannam |
---|---|
date | Tue, 17 Jun 2014 15:36:56 +0100 |
parents | 1d526ba11a24 |
children | b66fb15de477 |
line wrap: on
line diff
--- a/layer/NoteLayer.h Tue Jun 17 15:18:06 2014 +0100 +++ b/layer/NoteLayer.h Tue Jun 17 15:36:56 2014 +0100 @@ -113,13 +113,13 @@ * not be finally added to the layer until the corresponding * note-off. */ - void addNoteOn(long frame, int pitch, int velocity); + void addNoteOn(int frame, int pitch, int velocity); /** * Add a note-off. This will cause a note to appear, if and only * if there is a matching pending note-on. */ - void addNoteOff(long frame, int pitch); + void addNoteOff(int frame, int pitch); /** * Abandon all pending note-on events.