| 366 | } |
| 367 | |
| 368 | void MainWindow::about() |
| 369 | { |
| 370 | AboutDialog dialog(this); |
| 371 | dialog.setWindowTitle(tr("About GammaRay")); |
| 372 | dialog.setWindowIcon(QPixmap(QStringLiteral(":/gammaray/GammaRay-128x128.png"))); |
| 373 | dialog.setThemeLogo(QStringLiteral("gammaray-trademark.png")); |
| 374 | dialog.setTitle(AboutData::aboutTitle()); |
| 375 | dialog.setHeader(AboutData::aboutHeader()); |
| 376 | dialog.setAuthors(AboutData::aboutAuthors()); |
| 377 | dialog.setFooter(AboutData::aboutFooter()); |
| 378 | dialog.adjustSize(); |
| 379 | dialog.exec(); |
| 380 | } |
| 381 | |
| 382 | void MainWindow::aboutPlugins() |
| 383 | { |
nothing calls this directly
no test coverage detected