summaryrefslogtreecommitdiffhomepage
path: root/tracker-pt/ftnoir_tracker_pt_dialog.h
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2019-02-21 19:11:19 +0100
committerStanislaw Halik <sthalik@misaki.pl>2019-02-21 19:17:21 +0100
commitff38e35d832b7c7a3e189bee4a80271fd3a3c978 (patch)
treebb7c1cfee8a00acab1b455a2d5f211192ebc9ed9 /tracker-pt/ftnoir_tracker_pt_dialog.h
parent9e077d8d72f377be85406d90354afcb83ad3faa9 (diff)
tracker/pt: don't `namespace pt_module' for core PT stuff
Diffstat (limited to 'tracker-pt/ftnoir_tracker_pt_dialog.h')
-rw-r--r--tracker-pt/ftnoir_tracker_pt_dialog.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/tracker-pt/ftnoir_tracker_pt_dialog.h b/tracker-pt/ftnoir_tracker_pt_dialog.h
index 3bd1a561..66981ee6 100644
--- a/tracker-pt/ftnoir_tracker_pt_dialog.h
+++ b/tracker-pt/ftnoir_tracker_pt_dialog.h
@@ -17,6 +17,8 @@
#include <QTimer>
#include <QMutex>
+namespace pt_impl {
+
class TrackerDialog_PT : public ITrackerDialog
{
Q_OBJECT
@@ -47,3 +49,7 @@ protected:
Ui::UICPTClientControls ui;
};
+
+} // ns pt_impl
+
+using TrackerDialog_PT = pt_impl::TrackerDialog_PT;