[svn] Minor GUI changes svn
authormattias
Wed, 03 Jan 2007 08:57:36 +0000
branchsvn
changeset 76cf6f8b118af1
parent 75 d83cb8c9acd1
child 77 34a27b94f99b
[svn] Minor GUI changes
x86/debugWidget.cpp
x86/infoWidget.cpp
     1.1 --- a/x86/debugWidget.cpp	Wed Dec 13 08:24:57 2006 +0000
     1.2 +++ b/x86/debugWidget.cpp	Wed Jan 03 08:57:36 2007 +0000
     1.3 @@ -72,8 +72,13 @@
     1.4  	info = new QListWidget;
     1.5  	//info->setSelectionMode(QAbstractItemView::NoSelection);
     1.6  	QString itemText;
     1.7 +	itemText.append("http://prophet.snc.sapmi.net");
     1.8 +    QListWidgetItem *newItem = new QListWidgetItem;
     1.9 +    newItem->setText(itemText);
    1.10 +    info->insertItem(0, newItem);
    1.11 +	itemText.clear();
    1.12  	itemText.append("PRoPHET Version: 2.6.0");
    1.13 -    QListWidgetItem *newItem = new QListWidgetItem;
    1.14 +	newItem = new QListWidgetItem;
    1.15      newItem->setText(itemText);
    1.16      info->insertItem(0, newItem);
    1.17  	itemText.clear();
     2.1 --- a/x86/infoWidget.cpp	Wed Dec 13 08:24:57 2006 +0000
     2.2 +++ b/x86/infoWidget.cpp	Wed Jan 03 08:57:36 2007 +0000
     2.3 @@ -187,9 +187,6 @@
     2.4  	QLabel *labelGAMMA = new QLabel("Gamma:");
     2.5  	readGroup->addWidget(labelGAMMA, 9, 0);
     2.6  	readGroup->addWidget(lineGAMMA, 9, 1);
     2.7 -	QLabel *labelHELLO = new QLabel("Hello Timer:");
     2.8 -	readGroup->addWidget(labelHELLO, 10, 0);
     2.9 -	readGroup->addWidget(lineHELLO, 10, 1);
    2.10  
    2.11  	QLabel *labelALIVE = new QLabel("Alive Timer:");
    2.12  	readGroup->addWidget(labelALIVE, 11, 0);
    2.13 @@ -331,9 +328,6 @@
    2.14  	lineGAMMA = new QLineEdit();
    2.15  	lineGAMMA->setText(QString("%1").arg(conf.getGamma()));
    2.16  	
    2.17 -	lineHELLO = new QLineEdit();
    2.18 -	lineHELLO->setText(QString("%1").arg(conf.getHello()));
    2.19 -	
    2.20  	lineALIVE = new QLineEdit();
    2.21  	lineALIVE->setText(QString("%1").arg(conf.getAlive()));
    2.22