From c473f02ea0e6074073112c044289ab7baa6edbab Mon Sep 17 00:00:00 2001 From: Claudio Valerio Date: Mon, 21 May 2012 14:07:08 +0200 Subject: [PATCH] fixed double layer warning --- src/gui/UBLibraryWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/UBLibraryWidget.cpp b/src/gui/UBLibraryWidget.cpp index 0965687b..170f5add 100644 --- a/src/gui/UBLibraryWidget.cpp +++ b/src/gui/UBLibraryWidget.cpp @@ -570,7 +570,7 @@ UBNewFolderDlg::UBNewFolderDlg(QWidget *parent, const char *name):QDialog(parent mpButtons = new QDialogButtonBox(Qt::Horizontal, this); mpLayout = new QVBoxLayout(this); - mpHLayout = new QHBoxLayout(this); + mpHLayout = new QHBoxLayout(0); setLayout(mpLayout); mpLayout->addLayout(mpHLayout, 0); mpHLayout->addWidget(mpLabel, 0);