1 | #include "gitpushdialog.h" |
---|---|
2 | #include "ui_gitpushdialog.h" |
3 | |
4 | GitPushDialog::GitPushDialog(QWidget *parent) : |
5 | QDialog(parent), |
6 | ui(new Ui::GitPushDialog) |
7 | { |
8 | ui->setupUi(this); |
9 | } |
10 | |
11 | GitPushDialog::~GitPushDialog() |
12 | { |
13 | delete ui; |
14 | } |
15 |