mirror of
https://github.com/ZeroTier/ZeroTierOne
synced 2025-07-10 23:33:05 -07:00
18 lines
262 B
C++
18 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()
|
|
{
|
|
}
|