naming cleanup: iNoteIndex -> row

This commit is contained in:
Chris Danford
2004-10-24 00:17:15 +00:00
parent 3ac1dba044
commit 584189a10c
7 changed files with 27 additions and 27 deletions
+3 -3
View File
@@ -44,13 +44,13 @@ void NoteData::SetNumTracks( int iNewNumTracks )
}
/* Clear [iNoteIndexBegin,iNoteIndexEnd]; that is, including iNoteIndexEnd. */
void NoteData::ClearRange( int iNoteIndexBegin, int iNoteIndexEnd )
/* Clear [rowBegin,rowEnd]; that is, including rowEnd. */
void NoteData::ClearRange( int rowBegin, int rowEnd )
{
this->ConvertHoldNotesTo4s();
for( int t=0; t<GetNumTracks(); t++ )
{
FOREACH_NONEMPTY_ROW_IN_TRACK_RANGE( *this, t, i, iNoteIndexBegin, iNoteIndexEnd )
FOREACH_NONEMPTY_ROW_IN_TRACK_RANGE( *this, t, i, rowBegin, rowEnd )
SetTapNote(t, i, TAP_EMPTY);
}
this->Convert4sToHoldNotes();