15 lines
243 B
C++
15 lines
243 B
C++
|
#include "gitfetchdialog.h"
|
||
|
#include "ui_gitfetchdialog.h"
|
||
|
|
||
|
GitFetchDialog::GitFetchDialog(QWidget *parent) :
|
||
|
QDialog(parent),
|
||
|
ui(new Ui::GitFetchDialog)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
}
|
||
|
|
||
|
GitFetchDialog::~GitFetchDialog()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|