Fix doxygen warnings.

The code seems to run fine, but please TEST THIS.
Revert this if required.
This commit is contained in:
Jason Felds
2011-02-19 00:48:42 -05:00
parent 1bed6d3630
commit 2c70b65711
10 changed files with 48 additions and 33 deletions
+3 -3
View File
@@ -831,7 +831,7 @@ void NoteDataUtil::RemoveHoldNotes( NoteData &in, int iStartIndex, int iEndIndex
// turn all the HoldNotes into TapNotes
for( int t=0; t<in.GetNumTracks(); ++t )
{
NoteData::iterator begin, end;
NoteData::TrackMap::iterator begin, end;
in.GetTapNoteRangeInclusive( t, iStartIndex, iEndIndex, begin, end );
for( ; begin != end; ++begin )
{
@@ -847,7 +847,7 @@ void NoteDataUtil::ChangeRollsToHolds( NoteData &in, int iStartIndex, int iEndIn
{
for( int t=0; t<in.GetNumTracks(); ++t )
{
NoteData::iterator begin, end;
NoteData::TrackMap::iterator begin, end;
in.GetTapNoteRangeInclusive( t, iStartIndex, iEndIndex, begin, end );
for( ; begin != end; ++begin )
{
@@ -863,7 +863,7 @@ void NoteDataUtil::ChangeHoldsToRolls( NoteData &in, int iStartIndex, int iEndIn
{
for( int t=0; t<in.GetNumTracks(); ++t )
{
NoteData::iterator begin, end;
NoteData::TrackMap::iterator begin, end;
in.GetTapNoteRangeInclusive( t, iStartIndex, iEndIndex, begin, end );
for( ; begin != end; ++begin )
{