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