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