equal
deleted
inserted
replaced
6 void TeamLabel::teamButtonClicked() |
6 void TeamLabel::teamButtonClicked() |
7 { |
7 { |
8 emit teamActivated(text()); |
8 emit teamActivated(text()); |
9 } |
9 } |
10 |
10 |
11 TeamShowWidget::TeamShowWidget(tmprop team) : |
11 TeamShowWidget::TeamShowWidget(tmprop team, QWidget * parent) : |
12 mainLayout(this), m_team(team) |
12 QWidget(parent), mainLayout(this), m_team(team) |
13 { |
13 { |
14 QLabel* pixlbl=new QLabel(); |
14 QLabel* pixlbl=new QLabel(); |
15 pixlbl->setPixmap(QPixmap("./Data/Graphics/thinking.png")); |
15 pixlbl->setPixmap(QPixmap("./Data/Graphics/thinking.png")); |
16 mainLayout.addWidget(pixlbl); |
16 mainLayout.addWidget(pixlbl); |
17 |
17 |