简体   繁体   中英

Adding layout to another layout in Qt [C++]

Could anyone tell me why I'm getting error and how to fix it?

        QGridLayout* mainLayout = new QGridLayout;
        QGridLayout *leftLayout = new QGridLayout;
        QGridLayout *rightLayout = new QGridLayout;
        mainLayout->addLayout(leftLayout);
        mainLayout->addLayout(rightLayout);
        setLayout(mainLayout);

error I'm getting: 'error: no matching function for call to 'QGridLayout::addLayout(QGridLayout*&)'
Thank you for any help.

Qt4 Reference says:

void addLayout ( QLayout * layout, int row, int column, Qt::Alignment alignment = 0 )

So you have to do:

mainLayout->addLayout(leftLayout, 0, 0);
mainLayout->addLayout(rightLayout, 0, 1);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM