I tried to find the splitter among the children of the mainwindow
QSplitter* splitter
= this
->findChild<QSplitter
*>
();
QSplitter* splitter = this->findChild<QSplitter*>();
To copy to clipboard, switch view to plain text mode
or I tried to find all widgets
QList<QWidget*> swList = this->findChildren<QWidget*>();
QList<QWidget*> swList = this->findChildren<QWidget*>();
To copy to clipboard, switch view to plain text mode
and have set the color of all roles in the palette to red.
Everything turned red except the splitter.
Has anyone a hint for what I should search?
Bookmarks