Using Qt I create a QMainWindow and want to call a function AFTER the windows is shown. When I call the function in the constructor the fun
Reimplement method void show() like this:
void show()
void MainWindow::show() { QMainWindow::show(); // Call your special function here. }