diff -r fbc92f5b068d -r 5efa80494e31 QTfrontend/pages.cpp --- a/QTfrontend/pages.cpp Sat Nov 06 14:49:11 2010 +0100 +++ b/QTfrontend/pages.cpp Sat Nov 06 12:33:24 2010 -0400 @@ -1304,12 +1304,14 @@ if(list[i + 5] == "+rnd+") { item = new QTableWidgetItem(tr("Random Map")); // selected map (is randomized) - item->setIcon(QIcon(":/res/mapRandom.png")); +// FIXME - need real icons. Disabling until then +// item->setIcon(QIcon(":/res/mapRandom.png")); } else if (list[i+5] == "+maze+") { item = new QTableWidgetItem(tr("Random Maze")); - item->setIcon(QIcon(":/res/mapMaze.png")); +// FIXME - need real icons. Disabling until then +// item->setIcon(QIcon(":/res/mapMaze.png")); } else { @@ -1324,8 +1326,9 @@ } else { - // todo: mission icon? - item->setIcon(QIcon(":/res/mapCustom.png")); + // todo: mission icon? +// FIXME - need real icons. Disabling until then +// item->setIcon(QIcon(":/res/mapCustom.png")); } }