Remove unnecessary cast.

This commit is contained in:
Glenn Maynard
2002-10-18 00:59:34 +00:00
parent 2cef59ffd2
commit def5791975
+1 -1
View File
@@ -1414,7 +1414,7 @@ void ScreenEdit::TransitionFromRecordToEdit()
// delete old TapNotes in the range
m_NoteFieldEdit.ClearRange( iNoteIndexBegin, iNoteIndexEnd );
m_NoteFieldEdit.CopyRange( (NoteData*)&m_NoteFieldRecord, iNoteIndexBegin, iNoteIndexEnd, iNoteIndexBegin );
m_NoteFieldEdit.CopyRange( &m_NoteFieldRecord, iNoteIndexBegin, iNoteIndexEnd, iNoteIndexBegin );
}