blob: e4027c730317d5d58ea3aff2f7dee7fb5245fff8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include "ftnoir_protocol_wine.h"
#include <QDebug>
#include "opentrack/plugin-api.hpp"
FTControls::FTControls()
{
ui.setupUi( this );
connect(ui.btnOK, SIGNAL(clicked()), this, SLOT(doOK()));
connect(ui.btnCancel, SIGNAL(clicked()), this, SLOT(doCancel()));
}
void FTControls::doOK() {
this->close();
}
void FTControls::doCancel() {
this->close();
}
|