QTfrontend/teamselhelper.cpp
changeset 61 505691a09dee
parent 50 9ab4067dabec
child 63 27e2b5bb6d4b
equal deleted inserted replaced
60:7fbfa2f13f6f 61:505691a09dee
     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