]> git.sesse.net Git - nageru/blobdiff - nageru/aboutdialog.cpp
Give Futatabi an about/license dialog, and the same manual link as Nageru.
[nageru] / nageru / aboutdialog.cpp
diff --git a/nageru/aboutdialog.cpp b/nageru/aboutdialog.cpp
deleted file mode 100644 (file)
index def4151..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-#include "aboutdialog.h"
-
-#include <QDialogButtonBox>
-
-#include "ui_aboutdialog.h"
-
-using namespace std;
-
-AboutDialog::AboutDialog()
-       : ui(new Ui::AboutDialog)
-{
-       ui->setupUi(this);
-       QString str = ui->header->text();
-       str.replace("@NAGERU_VERSION@", NAGERU_VERSION);
-       ui->header->setText(str);
-
-       connect(ui->button_box, &QDialogButtonBox::accepted, [this]{ this->close(); });
-}
-