15 lines
236 B
C++
15 lines
236 B
C++
|
#include "gitpushdialog.h"
|
||
|
#include "ui_gitpushdialog.h"
|
||
|
|
||
|
GitPushDialog::GitPushDialog(QWidget *parent) :
|
||
|
QDialog(parent),
|
||
|
ui(new Ui::GitPushDialog)
|
||
|
{
|
||
|
ui->setupUi(this);
|
||
|
}
|
||
|
|
||
|
GitPushDialog::~GitPushDialog()
|
||
|
{
|
||
|
delete ui;
|
||
|
}
|