RedPanda-CPP/RedPandaIDE/vcs/gitfetchdialog.cpp

15 lines
243 B
C++
Raw Permalink Normal View History

2022-02-24 07:22:44 +08:00
#include "gitfetchdialog.h"
#include "ui_gitfetchdialog.h"
GitFetchDialog::GitFetchDialog(QWidget *parent) :
QDialog(parent),
ui(new Ui::GitFetchDialog)
{
ui->setupUi(this);
}
GitFetchDialog::~GitFetchDialog()
{
delete ui;
}