PDA

View Full Version : Disable QVBoxLayout Border



Qt Coder
26th March 2009, 11:31
I want to disable border of QVBoxLayout ("NoseLayout " in below code )
how to do that????????

verticalLayoutWidget = new QWidget(GLT_Submenu);
verticalLayoutWidget->setObjectName(QString::fromUtf8("verticalLayoutWidget"));
verticalLayoutWidget->setGeometry(QRect(128, 65, 33, 58));
NoseLayout = new QVBoxLayout(verticalLayoutWidget);
NoseLayout->setObjectName(QString::fromUtf8("NoseLayout"));
NoseLayout->setContentsMargins(0, 0, 0, 0);

fanat9
26th March 2009, 12:50
NoseLayout->setSpacing(0) ?