void GwtCallback::showAboutDialog() { // WA_DeleteOnClose AboutDialog* about = new AboutDialog(pOwner_->asWidget()); about->setAttribute(Qt::WA_DeleteOnClose); about->show(); }
void MainWindow::on_actionAbout_triggered() { AboutDialog *aboutDialog = new AboutDialog(this); aboutDialog->setAttribute(Qt::WA_DeleteOnClose); aboutDialog->show(); }