summaryrefslogtreecommitdiffhomepage
path: root/tracker-joystick
diff options
context:
space:
mode:
Diffstat (limited to 'tracker-joystick')
-rw-r--r--tracker-joystick/ftnoir_tracker_joystick.cpp4
-rw-r--r--tracker-joystick/ftnoir_tracker_joystick.h2
2 files changed, 1 insertions, 5 deletions
diff --git a/tracker-joystick/ftnoir_tracker_joystick.cpp b/tracker-joystick/ftnoir_tracker_joystick.cpp
index 498b4e42..42c2214a 100644
--- a/tracker-joystick/ftnoir_tracker_joystick.cpp
+++ b/tracker-joystick/ftnoir_tracker_joystick.cpp
@@ -26,10 +26,6 @@ joystick::~joystick()
{
}
-void joystick::start_tracker(QFrame*)
-{
-}
-
void joystick::data(double *data)
{
int map[6] = {
diff --git a/tracker-joystick/ftnoir_tracker_joystick.h b/tracker-joystick/ftnoir_tracker_joystick.h
index aea45983..bba4ad3e 100644
--- a/tracker-joystick/ftnoir_tracker_joystick.h
+++ b/tracker-joystick/ftnoir_tracker_joystick.h
@@ -41,7 +41,7 @@ class joystick : public ITracker
public:
joystick();
~joystick();
- void start_tracker(QFrame *);
+ module_status start_tracker(QFrame *) { return status_ok(); }
void data(double *data);
settings s;
QString guid;