QTfrontend/pages.cpp
changeset 1904 20348675b015
parent 1902 aeadb10c2d77
child 1905 b1ec8db513f2
--- a/QTfrontend/pages.cpp	Wed Mar 18 21:43:46 2009 +0000
+++ b/QTfrontend/pages.cpp	Wed Mar 18 22:02:55 2009 +0000
@@ -660,7 +660,6 @@
 
 PageInfo::PageInfo(QWidget* parent) : AbstractPage(parent)
 {
-	QFont * font14 = new QFont("MS Shell Dlg", 14);
 	QGridLayout * pageLayout = new QGridLayout(this);
 	pageLayout->setColumnStretch(0, 1);
 	pageLayout->setColumnStretch(1, 1);
@@ -674,7 +673,6 @@
 
 PageSinglePlayer::PageSinglePlayer(QWidget* parent) : AbstractPage(parent)
 {
-	QFont * font14 = new QFont("MS Shell Dlg", 14);
 	QVBoxLayout * vLayout = new QVBoxLayout(this);
 	QHBoxLayout * topLine = new QHBoxLayout();
 	QHBoxLayout * middleLine = new QHBoxLayout();
@@ -850,6 +848,10 @@
 	AbstractPage(parent)
 {
 	QGridLayout * pageLayout = new QGridLayout(this);
+
+	QLabel * lblConnecting = new QLabel(this);
+	lblConnecting->setText(tr("Connecting..."));
+	pageLayout->addWidget(lblConnecting);
 }
 
 PageScheme::PageScheme(QWidget* parent) :