--- a/QTfrontend/teamselhelper.cpp Sun Nov 12 20:15:58 2006 +0000
+++ b/QTfrontend/teamselhelper.cpp Sun Nov 12 20:31:16 2006 +0000
@@ -37,13 +37,13 @@
mainLayout.setMargin(2);
this->setMaximumHeight(35);
//QPixmap* px=new QPixmap(QPixmap(datadir->absolutePath() + "/Forts/" + m_team.Fort + "L.png").scaled(40, 40));
- QIcon difficultyIcon(QString(":/res/botlevels/%1.png").arg(m_team.difficulty));
+ QIcon* difficultyIcon=new QIcon(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); // *px
butt->setFlat(true);
butt->setGeometry(0, 0, 30, 30);
butt->setMaximumWidth(30);