# HG changeset patch # User Raimund Renkert # Date 1395837012 -3600 # Node ID fe424c5fc875b13b0892a0db6dec569be6a7b90d # Parent 4790a26c2e8bee8ffa7afcddaf316cffe3673bbd Show the about dialog. diff -r 4790a26c2e8b -r fe424c5fc875 ui/mainwindow.cpp --- a/ui/mainwindow.cpp Wed Mar 26 13:29:49 2014 +0100 +++ b/ui/mainwindow.cpp Wed Mar 26 13:30:12 2014 +0100 @@ -27,6 +27,7 @@ #include "downloader.h" #include "listupdatedialog.h" #include "helpdialog.h" +#include "aboutdialog.h" MainWindow::MainWindow() { createActions(); @@ -298,6 +299,8 @@ void MainWindow::showAbout() { qDebug() << "show aboutdialog"; + AboutDialog *about = new AboutDialog(this); + about->show(); } void MainWindow::showDetails(QListWidgetItem *item)