diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2016-11-04 19:15:54 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2016-11-04 19:48:11 +0100 |
commit | b89699c7551f768bf4ff47820543f8c7b8c794af (patch) | |
tree | c3a21ec23a40250ec54b97fe17b9035a932cfaf8 /tracker-rift-140/dialog.cpp | |
parent | 068e0c7d432ede0a388fe1478b5146fcf1809315 (diff) |
modules: make names unique
Diffstat (limited to 'tracker-rift-140/dialog.cpp')
-rw-r--r-- | tracker-rift-140/dialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tracker-rift-140/dialog.cpp b/tracker-rift-140/dialog.cpp index a6bf8126..bd6ac46c 100644 --- a/tracker-rift-140/dialog.cpp +++ b/tracker-rift-140/dialog.cpp @@ -1,7 +1,7 @@ #include "rift-140.hpp" #include "api/plugin-api.hpp" -TrackerControls::TrackerControls() +dialog_rift_140::dialog_rift_140() { ui.setupUi( this ); @@ -14,12 +14,12 @@ TrackerControls::TrackerControls() tie_setting(s.useYawSpring, ui.yawSpring); } -void TrackerControls::doOK() { +void dialog_rift_140::doOK() { s.b->save(); close(); } -void TrackerControls::doCancel() { +void dialog_rift_140::doCancel() { close(); } |