summaryrefslogtreecommitdiffstats
path: root/src/server/helpwindow/helpwindow.cpp
blob: b209080ae8a8c17d79a45523c33dccb46101c561 (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
24
25
26
27
28
29
#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;
}

/*void HelpWindow::show()
{
	this->showNormal();
}
*/

/*
 * Slots
 */

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