diff options
Diffstat (limited to 'tracker-tobii-eyex/tobii-eyex-dialog.cpp')
-rw-r--r-- | tracker-tobii-eyex/tobii-eyex-dialog.cpp | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/tracker-tobii-eyex/tobii-eyex-dialog.cpp b/tracker-tobii-eyex/tobii-eyex-dialog.cpp deleted file mode 100644 index 6ab916be..00000000 --- a/tracker-tobii-eyex/tobii-eyex-dialog.cpp +++ /dev/null @@ -1,22 +0,0 @@ -#include "tobii-eyex-dialog.hpp" - -tobii_eyex_dialog::tobii_eyex_dialog() -{ - ui.setupUi(this); - - connect(ui.buttonBox, &QDialogButtonBox::accepted, this, &tobii_eyex_dialog::do_ok); - connect(ui.buttonBox, &QDialogButtonBox::rejected, this, &tobii_eyex_dialog::do_cancel); - - //tie_setting(s.mode, ui.tracking_mode); -} - -void tobii_eyex_dialog::do_ok() -{ - s.b->save(); - close(); -} - -void tobii_eyex_dialog::do_cancel() -{ - close(); -} |