back to static QIcon
authordisplacer
Sun, 12 Nov 2006 22:38:31 +0000
changeset 234 4040a1cbb0ee
parent 233 5c3fe8762edc
child 235 28903e620258
back to static QIcon
QTfrontend/teamselhelper.cpp
--- a/QTfrontend/teamselhelper.cpp	Sun Nov 12 22:36:13 2006 +0000
+++ b/QTfrontend/teamselhelper.cpp	Sun Nov 12 22:38:31 2006 +0000
@@ -36,14 +36,13 @@
   mainLayout.setSpacing(1);
   mainLayout.setMargin(2);
   this->setMaximumHeight(35);
-  //QPixmap* px=new QPixmap(QPixmap(datadir->absolutePath() + "/Forts/" + m_team.Fort + "L.png").scaled(40, 40));
-  QIcon* difficultyIcon=new QIcon(QString(":/res/botlevels/%1.png").arg(m_team.difficulty));
+  QIcon difficultyIcon(QString(":/res/botlevels/%1.png").arg(m_team.difficulty));
 
   QPalette newPalette = palette();
   newPalette.setColor(QPalette::Button, palette().color(backgroundRole()));
 
   // team fort
-  QPushButton* butt=new QPushButton(*difficultyIcon, "", this); // *px
+  QPushButton* butt=new QPushButton(difficultyIcon, "", this);
   butt->setFlat(true);
   butt->setGeometry(0, 0, 30, 30);
   butt->setMaximumWidth(30);