void CQSplashWidget::slotViewLicense() { QString FixedTitle = "COPASI "; FixedTitle += FROM_UTF8(CVersion::VERSION.getVersion()); AboutDialog* aboutDialog = new AboutDialog(this, CCopasiRootContainer::getLicenseHTML(), 76, 30); aboutDialog->setWindowTitle(FixedTitle); aboutDialog->exec(); }
bool AboutDialog::showDlg( QWidget * parent ) { AboutDialog * dlg = new AboutDialog( parent ); //dlg->setModal( true ); dlg->setWindowTitle("About CoolReader"); dlg->show(); dlg->raise(); dlg->activateWindow(); return true; }