summaryrefslogtreecommitdiffhomepage
path: root/ftnoir_tracker_hydra/ftnoir_tracker_hydra_dialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ftnoir_tracker_hydra/ftnoir_tracker_hydra_dialog.cpp')
-rw-r--r--ftnoir_tracker_hydra/ftnoir_tracker_hydra_dialog.cpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/ftnoir_tracker_hydra/ftnoir_tracker_hydra_dialog.cpp b/ftnoir_tracker_hydra/ftnoir_tracker_hydra_dialog.cpp
deleted file mode 100644
index 2c23ee46..00000000
--- a/ftnoir_tracker_hydra/ftnoir_tracker_hydra_dialog.cpp
+++ /dev/null
@@ -1,22 +0,0 @@
-#include "ftnoir_tracker_hydra.h"
-#include "opentrack/plugin-api.hpp"
-
-TrackerControls::TrackerControls()
-{
- ui.setupUi( this );
-
- // Connect Qt signals to member-functions
- connect(ui.buttonBox, SIGNAL(accepted()), this, SLOT(doOK()));
- connect(ui.buttonBox, SIGNAL(rejected()), this, SLOT(doCancel()));
-}
-
-void TrackerControls::doOK() {
- s.b->save();
- this->close();
-}
-
-void TrackerControls::doCancel() {
- s.b->reload();
- close();
-}
-