summaryrefslogtreecommitdiff
path: root/ZeroTierUI/aboutwindow.cpp
blob: 83d680b1d8836e804924e5889988afef58f0c891 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#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()
{
}