s/Add/push_back/

This commit is contained in:
Glenn Maynard
2002-10-31 04:23:39 +00:00
parent a041b7cd3e
commit bccaf3560b
36 changed files with 146 additions and 146 deletions
+3 -3
View File
@@ -226,9 +226,9 @@ void Course::GetSongAndNotesForCurrentStyle(
if( pNotes == NULL )
continue; // skip
apSongsOut.Add( pSong );
apNotesOut.Add( pNotes );
asModifiersOut.Add( sModifiers );
apSongsOut.push_back( pSong );
apNotesOut.push_back( pNotes );
asModifiersOut.push_back( sModifiers );
}
}