aboutsummaryrefslogtreecommitdiffstats
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index b54a767..c2a9820 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -3,6 +3,7 @@
#include "src/archive/base_archive.h"
#include "src/command_line.h"
#include "src/settingsdialog.h"
+#include "src/aboutdialog.h"
#include "src/widgets/tab_activity_list.h"
#include <QFileDialog>
@@ -105,7 +106,8 @@ void MainWindow::on_actionQuit_triggered(bool checked) {
}
void MainWindow::on_actionAbout_triggered(bool checked) {
- QMessageBox::information(this, "title", "text");
+ AboutDialog about_dialog(this);
+ about_dialog.exec();
}
void MainWindow::open_file(const QString &filename) {