remove SortOrder from WheelItemData. Use the SortOrder in m_Action instead.

This commit is contained in:
Chris Danford
2004-12-04 22:36:29 +00:00
parent 2684ff5124
commit 0bc5f079ca
4 changed files with 42 additions and 50 deletions
+1 -2
View File
@@ -28,7 +28,7 @@
WheelItemData::WheelItemData( WheelItemType wit, Song* pSong, CString sSectionName, Course* pCourse, RageColor color, SortOrder so )
WheelItemData::WheelItemData( WheelItemType wit, Song* pSong, CString sSectionName, Course* pCourse, RageColor color )
{
m_Type = wit;
m_pSong = pSong;
@@ -36,7 +36,6 @@ WheelItemData::WheelItemData( WheelItemType wit, Song* pSong, CString sSectionNa
m_pCourse = pCourse;
m_color = color;
m_Flags = WheelNotifyIcon::Flags();
m_SortOrder = so;
}