within an MDI I have subwindows as QScrollArea with a QWidget scrollAreaWidgetContents inside
Code:
m_ui(new Ui::childScrollArea) { childScrollArea->setWidget(scrollAreaWidgetContents); scrollAreaWidgetContents->show(); } { }
unfortunately the paint event in this case does not do any painting in the window!
what do i do wrong?
Thanks for any hint