QLayout: attempting to add QLayout "" to MainWindow, which already has a layout (solved)
-
Again: setCentralWidget takes a QWidget not a QLayout as a parameter.
Again 2:Put your Layout_page3 layout on a QWidget and then set that widget using setCentralWidget.
QWidget *placeholderWidget = new QWidget; placeholderWidget->setLayout(Layout_page3); setCentralWidget(placeholderWidget);
-
Are you still trying to set a layout on your main window ?
-
So again: you can not do that as the error message says. As already stated: QMainWindow already has a layout. The one that handles dock widgets, menu bar, status bar etc. You can't replace it. The central content of a QMainWindow is a QWidget, so create one widget that does what you want and set it using setCentralWidget.
-
You are Creating Layout inside a widget so Don't use (Parent Instance) 'this' pointer.
Layout_page3 = new QHBoxLayout;
try this it will work
-
Good afternoon every one!
I encour this issue too, Msg is:18:28:21: Debugging starts
QLayout: Attempting to add QLayout “” to MainWindow “MainWindow”, which already has a layoutReason:
I used the following In QMainwindow:
====error code=> QGridLayout *t_gridLayout_map = new QGridLayout(this);
Solution:
remove "this" as the following:
====OK code=> QGridLayout *t_gridLayout_map = new QGridLayout();That's OK!
have a good day! -
@Qterry-wang said in QLayout: attempting to add QLayout "" to MainWindow, which already has a layout (solved):
QGridLayout *t_gridLayout_map = new QGridLayout();
This does not address the issue. It merely creates a currently-unparented
QGridLayout
, it depends what you then do with that. You cannot then add it directly tothis
, theMainWindow
, since that already has a layout. -
@Qterry-wang wow I was also getting similar warning and i deleted parameter like you, warning was gone. THX !