From 247964f20b0904a4bf81643e81da469dcbee72af Mon Sep 17 00:00:00 2001 From: Claudio Valerio Date: Mon, 23 Jan 2012 10:25:00 +0100 Subject: [PATCH] removed double layer warning --- src/gui/UBTBPageEditWidget.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/UBTBPageEditWidget.cpp b/src/gui/UBTBPageEditWidget.cpp index 693c3674..ab1dc7a8 100644 --- a/src/gui/UBTBPageEditWidget.cpp +++ b/src/gui/UBTBPageEditWidget.cpp @@ -245,7 +245,7 @@ UBUrlWidget::UBUrlWidget(QWidget *parent, const char *name):QWidget(parent) mpLayout = new QVBoxLayout(this); setLayout(mpLayout); - mpLabelLayout = new QHBoxLayout(this); + mpLabelLayout = new QHBoxLayout(0); mpUrlLabel = new QLabel(tr("Url"), this); mpLabelLayout->addWidget(mpUrlLabel, 0); mpUrl = new QLineEdit(this); @@ -253,7 +253,7 @@ UBUrlWidget::UBUrlWidget(QWidget *parent, const char *name):QWidget(parent) mpUrl->setMinimumHeight(20); mpLabelLayout->addWidget(mpUrl, 1); - mpTitleLayout = new QHBoxLayout(this); + mpTitleLayout = new QHBoxLayout(0); mpTitleLabel = new QLabel(tr("Title"),this); mpTitleLayout->addWidget(mpTitleLabel,0); mpTitle = new QLineEdit(this);