summaryrefslogtreecommitdiffstats
path: root/src/server/reloadroomwindow/reloadroomwindow.cpp
blob: 77219a7c1a419dd9408e546affb4ff7dfbf9550f (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 "reloadroomwindow.h"
#include "ui_reloadroom.h"

ReloadRoomWindow::ReloadRoomWindow(QWidget *parent) :
	QDialog(parent), ui(new Ui::ReloadRoom)
{
	ui->setupUi(this);
	connect(ui->buttonBox, SIGNAL(accepted()), this, SLOT(onButtonOk()));
	connect(ui->buttonBox, SIGNAL(rejected()), this, SLOT(onButtonCancel()));
}

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

/*
 * Slots
 */

void ReloadRoomWindow::onButtonOk()
{

}

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