fix warning

This commit is contained in:
Glenn Maynard
2006-08-17 04:01:48 +00:00
parent 035b4d9fd6
commit 965ef66c55
+1 -1
View File
@@ -11,7 +11,7 @@ struct RoomWheelData : public WheelItemBaseData
{
RoomWheelData() : m_iFlags(0) { WheelItemBaseData::WheelItemBaseData(); }
RoomWheelData( WheelItemType wit, const RString& sTitle, const RString& sDesc, RageColor color )
: m_iFlags(0), m_sDesc(sDesc), WheelItemBaseData( wit, sTitle, color )
: WheelItemBaseData( wit, sTitle, color ), m_sDesc(sDesc), m_iFlags(0)
{};
RString m_sDesc;