diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2018-07-31 12:38:27 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2018-07-31 12:38:27 +0200 |
commit | 5b9ccf5164199804b6574b40914ee77baf0b6a78 (patch) | |
tree | 49659924d357c80d0ae22209bef3b0271c8e68a7 /tracker-tobii-eyex/tobii-eyex-dialog.cpp | |
parent | 1e108eb2fd484f62a55041a2d538b8e51bb297e7 (diff) |
tracker/tobii-eyex: remove obsolete code
The API is obsolete as well as the device.
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(); -} |