diff options
| author | Stefan Suhren <suhren.stefan@fh-swf.de> | 2015-08-31 21:52:56 +0200 |
|---|---|---|
| committer | Stefan Suhren <suhren.stefan@fh-swf.de> | 2015-08-31 21:52:56 +0200 |
| commit | 0486c639b945726b9272917f0224a7a42e958740 (patch) | |
| tree | 00ac64b33c39c59a49a0348f6d42098edaf0462f /passworddialog.cpp | |
| parent | 063ebad233e79f6ac8689f1209105a8564da4832 (diff) | |
| download | src-0486c639b945726b9272917f0224a7a42e958740.tar.gz src-0486c639b945726b9272917f0224a7a42e958740.zip | |
Füge PasswordDialog hinzu und baue erste UI
Diffstat (limited to 'passworddialog.cpp')
| -rw-r--r-- | passworddialog.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/passworddialog.cpp b/passworddialog.cpp new file mode 100644 index 0000000..a9c9590 --- /dev/null +++ b/passworddialog.cpp @@ -0,0 +1,14 @@ +#include "passworddialog.h" +#include "ui_passworddialog.h" + +PasswordDialog::PasswordDialog(QWidget *parent) : + QDialog(parent), + ui(new Ui::PasswordDialog) +{ + ui->setupUi(this); +} + +PasswordDialog::~PasswordDialog() +{ + delete ui; +} |
