aboutsummaryrefslogtreecommitdiffstats
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorConfuSomu2024-01-05 14:58:51 +0100
committerConfuSomu2024-01-05 14:58:51 +0100
commit6a07ef99d9f98b1db4fad91b3cd69e6146c1f01e (patch)
tree760dc8478dd6868a97cb5ee311a3f0932c9b48e8 /src/mainwindow.cpp
parent6db1c2645d6c5b7f8e4b13b8f58b4673ea5457f3 (diff)
downloadActorViewer-6a07ef99d9f98b1db4fad91b3cd69e6146c1f01e.tar
ActorViewer-6a07ef99d9f98b1db4fad91b3cd69e6146c1f01e.tar.gz
ActorViewer-6a07ef99d9f98b1db4fad91b3cd69e6146c1f01e.zip
Implement about dialog
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) {