summaryrefslogtreecommitdiffhomepage
path: root/tracker-pt
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2017-02-25 11:00:25 +0100
committerStanislaw Halik <sthalik@misaki.pl>2017-02-25 11:00:25 +0100
commit88ede1fa5566dd5966fe1d1cccc68b988fbb3495 (patch)
tree158472153f185ce79c95cf042b2233738d65f9c1 /tracker-pt
parent857ade6d3ea723f5caa0c63632f855eb6e9eacee (diff)
tracker/pt: fix clang-reported compile error
Diffstat (limited to 'tracker-pt')
-rw-r--r--tracker-pt/ftnoir_tracker_pt.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/tracker-pt/ftnoir_tracker_pt.h b/tracker-pt/ftnoir_tracker_pt.h
index e050f4ad..fba09c04 100644
--- a/tracker-pt/ftnoir_tracker_pt.h
+++ b/tracker-pt/ftnoir_tracker_pt.h
@@ -31,17 +31,17 @@
#include <memory>
#include <vector>
+class TrackerDialog_PT;
+
namespace impl {
using namespace types;
-class TrackerDialog_PT;
-
class Tracker_PT : public QThread, public ITracker
{
Q_OBJECT
friend class camera_dialog;
- friend class TrackerDialog_PT;
+ friend class ::TrackerDialog_PT;
public:
Tracker_PT();
~Tracker_PT() override;
@@ -97,4 +97,3 @@ class PT_metadata : public Metadata
};
using impl::Tracker_PT;
-using impl::TrackerDialog_PT;