summaryrefslogtreecommitdiffstats
path: root/src/server/helpwindow/helpwindow.cpp
blob: bc04d30e9a78060dc55a6c4bde5db9e1ec512b75 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include "helpwindow.h"
#include "ui_help.h"

HelpWindow::HelpWindow(QWidget *parent) :
	QDialog(parent), ui(new Ui::Help)
{
	ui->setupUi(this);
	connect(ui->pushButton, SIGNAL(clicked()), this, SLOT(onButtonCancel()));
}

HelpWindow::~HelpWindow()
{
	delete ui;
}

/*
 * Slots
 */

void HelpWindow::onButtonCancel()
{
	this->hide();
}