I have created an QTabWidget with Tabs. Now I want to set an CentralWidget for an only TabPage, I have tried this with this code:
msgList = new QListWidget(ui->msgTab);
msgList->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
But what I get is this: https://i.stack.imgur.com/jCjuG.png
So how I can set that an "CentralWidget" for the msgTab? And display it in the complete tab and not in the corner.
Regards, Jan