Hello,
i want to expand more than one page form a QToolBox. To do that i try to overwrite QToolBox::setCurrentIndex(int index). It works, but the problem is to use the following code form the original ToolBox within my subclass:
Qt Code:
QToolBoxPrivate::Page *c = d->page(index); if (!c || d->currentPage == c) return;To copy to clipboard, switch view to plain text mode
The compiler output is: incomplete type 'QToolBoxPrivate' used in nested name specifier...
I don't understand how can i use the D-Pointer to access d->currentPage. Can you help me please?
Bookmarks