| 123456789101112131415161718 |
- #include "aboutwindow.h"
- #include "ui_aboutwindow.h"
- AboutWindow::AboutWindow(QWidget *parent) :
- QDialog(parent),
- ui(new Ui::AboutWindow)
- {
- ui->setupUi(this);
- }
- AboutWindow::~AboutWindow()
- {
- delete ui;
- }
- void AboutWindow::on_uninstallButton_clicked()
- {
- }
|