diff -r 00d3d6d2e699 -r d21a48200772 QTfrontend/teamselhelper.cpp --- a/QTfrontend/teamselhelper.cpp Fri Aug 18 19:59:16 2006 +0000 +++ b/QTfrontend/teamselhelper.cpp Fri Aug 18 20:37:50 2006 +0000 @@ -8,7 +8,7 @@ emit teamActivated(text()); } -TeamShowWidget::TeamShowWidget(tmprop team, QWidget * parent) : +TeamShowWidget::TeamShowWidget(HWTeam team, QWidget * parent) : QWidget(parent), mainLayout(this), m_team(team) { this->setMaximumHeight(40); @@ -16,7 +16,7 @@ pixlbl->setPixmap(QPixmap("../share/hedgewars/Data/Graphics/thinking.png")); mainLayout.addWidget(pixlbl); - TeamLabel* lbl=new TeamLabel(team.teamName); + TeamLabel* lbl=new TeamLabel(team.TeamName); mainLayout.addWidget(lbl); QPushButton* butt=new QPushButton("o");