QVBoxLayout grid = new QVBoxLayout();
QGridLayout input = new QGridLayout();
QHBoxLayout button = new QHBoxLayout();
setLayout(grid);
QWebView page = new QWebView(this);
page.setUrl(new QUrl(Global.getUpdateAnnounceUrl()));
doNotRemindeMe = new QCheckBox();
doNotRemindeMe.setText(tr("Automatically check for updates at startup"));
input.addWidget(page,1,1);
doNotRemindeMe.setChecked(true);