mirror of
https://github.com/ZeroTier/ZeroTierOne
synced 2025-08-14 02:27:38 -07: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