diff -r 61ff669d610f -r 46f115569045 QTfrontend/ui/page/pagenetgame.cpp --- a/QTfrontend/ui/page/pagenetgame.cpp Fri Oct 26 10:31:26 2012 -0400 +++ b/QTfrontend/ui/page/pagenetgame.cpp Fri Oct 26 17:05:12 2012 +0200 @@ -62,9 +62,6 @@ { QHBoxLayout * bottomLayout = new QHBoxLayout; - btnDLC = addButton(tr("DLC"), bottomLayout, 0); - btnDLC->setWhatsThis(tr("Downloadable Content")); - leRoomName = new HistoryLineEdit(this,10); leRoomName->setMaxLength(60); leRoomName->setMinimumWidth(200); @@ -79,23 +76,21 @@ BtnGo->setMinimumHeight(50); bottomLayout->addWidget(leRoomName); - BtnUpdate = addButton(QAction::tr("Update"), bottomLayout, 2); + BtnUpdate = addButton(QAction::tr("Update"), bottomLayout, 1); bottomLayout->addStretch(); bottomLayout->addWidget(BtnGo); - BtnMaster = addButton(tr("Control"), bottomLayout, 4); + BtnMaster = addButton(tr("Control"), bottomLayout, 3); bottomLayout->insertStretch(3, 100); - BtnStart = addButton(QAction::tr("Start"), bottomLayout, 4); + BtnStart = addButton(QAction::tr("Start"), bottomLayout, 3); return bottomLayout; } void PageNetGame::connectSignals() { - connect(btnDLC, SIGNAL(clicked()), this, SIGNAL(DLCClicked())); - connect(btnSetup, SIGNAL(clicked()), this, SIGNAL(SetupClicked())); connect(BtnUpdate, SIGNAL(clicked()), this, SLOT(onUpdateClick()));