mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2026-03-03 04:11:38 -08:00
More UI work...
This commit is contained in:
parent
10f03d4119
commit
f1b0178a85
7 changed files with 451 additions and 49 deletions
18
ZeroTierUI/aboutwindow.cpp
Normal file
18
ZeroTierUI/aboutwindow.cpp
Normal file
|
|
@ -0,0 +1,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()
|
||||
{
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue