mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-20 21:43:08 +00:00
19 lines
262 B
C++
19 lines
262 B
C++
#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()
|
|
{
|
|
}
|