Rename overloaded methods of Song so that stack traces are more helpful.

This commit is contained in:
Chris Danford
2003-08-10 08:58:11 +00:00
parent 53cbf16bfe
commit 1e514c1c51
12 changed files with 54 additions and 52 deletions
+2 -2
View File
@@ -314,10 +314,10 @@ void EditMenu::OnRowValueChanged( Row row )
Steps* EditMenu::GetSelectedNotes()
{
return GetSelectedSong()->GetNotes(GetSelectedNotesType(),GetSelectedDifficulty(), false);
return GetSelectedSong()->GetStepsByDifficulty(GetSelectedNotesType(),GetSelectedDifficulty(), false);
}
Steps* EditMenu::GetSelectedSourceNotes()
{
return GetSelectedSong()->GetNotes(GetSelectedSourceNotesType(),GetSelectedSourceDifficulty(), false);
return GetSelectedSong()->GetStepsByDifficulty(GetSelectedSourceNotesType(),GetSelectedSourceDifficulty(), false);
}