equal
deleted
inserted
replaced
72 |
72 |
73 QLayout * PageNetServer::footerLayoutDefinition() |
73 QLayout * PageNetServer::footerLayoutDefinition() |
74 { |
74 { |
75 QHBoxLayout * bottomLayout = new QHBoxLayout(); |
75 QHBoxLayout * bottomLayout = new QHBoxLayout(); |
76 |
76 |
77 BtnStart = new QPushButton(this); |
77 BtnStart = formattedButton(QPushButton::tr("Start")); |
78 BtnStart->setFont(*font14); |
78 BtnStart->setMinimumWidth(180); |
79 BtnStart->setText(QPushButton::tr("Start")); |
|
80 |
79 |
81 bottomLayout->addStretch(); |
80 bottomLayout->addStretch(); |
82 bottomLayout->addWidget(BtnStart); |
81 bottomLayout->addWidget(BtnStart); |
83 |
82 |
84 return bottomLayout; |
83 return bottomLayout; |