summaryrefslogtreecommitdiffstats
path: root/vrplayer/dlgabout.cpp
blob: b6ec55ee536e6cd33d90e9e257ce4d1145e21369 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "dlgabout.h"
#include "ui_dlgabout.h"

DlgAbout::DlgAbout(QWidget *parent) :
    QDialog(parent),
    ui(new Ui::DlgAbout)
{
    ui->setupUi(this);
    connect(ui->okButton, SIGNAL(clicked()), this, SLOT(onOk()));
}

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

void DlgAbout::onOk()
{
    this->done(0);
}