summaryrefslogtreecommitdiffhomepage
path: root/ftnoir_tracker_pt/ftnoir_tracker_pt_dialog.h
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2015-06-16 08:50:03 +0200
committerStanislaw Halik <sthalik@misaki.pl>2015-06-16 09:19:38 +0200
commit4c5c3904a55a748f3453f5b067e2d6d0f0a11848 (patch)
tree523bf9f2129d523366555437c220b5878082b28a /ftnoir_tracker_pt/ftnoir_tracker_pt_dialog.h
parent7e3f2ec7b38d547e39d667b9ab188f90775dd3bf (diff)
pt: rename for consistency with trackhat
We're going to merge to trackhat often so let's not introduce needless conflicts. PT headers need to be include-able.
Diffstat (limited to 'ftnoir_tracker_pt/ftnoir_tracker_pt_dialog.h')
-rw-r--r--ftnoir_tracker_pt/ftnoir_tracker_pt_dialog.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ftnoir_tracker_pt/ftnoir_tracker_pt_dialog.h b/ftnoir_tracker_pt/ftnoir_tracker_pt_dialog.h
index c6f7f8e1..c1cd2e3b 100644
--- a/ftnoir_tracker_pt/ftnoir_tracker_pt_dialog.h
+++ b/ftnoir_tracker_pt/ftnoir_tracker_pt_dialog.h
@@ -23,11 +23,11 @@
//-----------------------------------------------------------------------------
// The dialog that shows up when the user presses "Settings"
-class TrackerDialog : public ITrackerDialog
+class TrackerDialog_PT : public ITrackerDialog
{
Q_OBJECT
public:
- TrackerDialog();
+ TrackerDialog_PT();
void register_tracker(ITracker *tracker) override;
void unregister_tracker() override;
void save();
@@ -40,8 +40,8 @@ public slots:
void startstop_trans_calib(bool start);
void poll_tracker_info();
private:
- settings s;
- Tracker* tracker;
+ settings_pt s;
+ Tracker_PT* tracker;
QTimer timer;
TranslationCalibrator trans_calib;