sorry for typing wrong . I am using show() fucntion actually it is a member of QWidget. But what I am doing is displaying dockwindows in small screen and when the screen is full I am trying to hide these windows. Even using show( ) still did not work.
QList<QDockWidget*>dw = qFindChildren<QDockWidget*>(mainWindow, QString());
for (int i = 0; i < dw.size(); ++i)
{
dw.at(i)->show();
}




Reply With Quote

Bookmarks