summaryrefslogtreecommitdiffhomepage
path: root/tracker-rift-140/dialog.cpp
blob: 53b4a1d21e5c190d7d123a8c8c59d07f1b1d2296 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include "rift-140.hpp"
#include "api/plugin-api.hpp"

dialog_rift_140::dialog_rift_140()
{
    ui.setupUi(this);

    connect(ui.buttonBox, SIGNAL(accepted()), this, SLOT(doOK()));
    connect(ui.buttonBox, SIGNAL(rejected()), this, SLOT(doCancel()));
}

void dialog_rift_140::doOK() {
    s.b->save();
    close();
}

void dialog_rift_140::doCancel() {
    close();
}