diff -r 6e3974128631 -r 1d1a14b39400 QTfrontend/team.cpp --- a/QTfrontend/team.cpp Mon May 28 14:20:51 2012 -0400 +++ b/QTfrontend/team.cpp Mon May 28 22:42:59 2012 +0400 @@ -54,6 +54,7 @@ m_rounds = 0; m_wins = 0; m_campaignProgress = 0; + m_color = 0; } HWTeam::HWTeam(const QStringList& strLst) : @@ -82,6 +83,7 @@ m_rounds = 0; m_wins = 0; m_campaignProgress = 0; + m_color = 0; } HWTeam::HWTeam() : @@ -112,6 +114,7 @@ m_rounds = 0; m_wins = 0; m_campaignProgress = 0; + m_color = 0; } HWTeam::HWTeam(const HWTeam & other) : @@ -157,6 +160,7 @@ m_campaignProgress = other.m_campaignProgress; m_rounds = other.m_rounds; m_wins = other.m_wins; + m_color = other.m_color; } return *this;