diff options
Diffstat (limited to 'proto-iokit-foohid/iokitprotocol.h')
-rw-r--r-- | proto-iokit-foohid/iokitprotocol.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/proto-iokit-foohid/iokitprotocol.h b/proto-iokit-foohid/iokitprotocol.h index e3a1355c..8148e7ab 100644 --- a/proto-iokit-foohid/iokitprotocol.h +++ b/proto-iokit-foohid/iokitprotocol.h @@ -19,7 +19,7 @@ public: IOKitProtocol(); module_status initialize() override; - void pose(const double *headpose) final; + void pose(const double *headpose, const double*) final; QString game_name() final; private: @@ -28,7 +28,8 @@ private: class IOKitProtocolMetadata : public Metadata { -public: - QString name() { return otr_tr("Virtual joystick"); } + Q_OBJECT + + QString name() { return tr("Virtual joystick"); } QIcon icon() { return QIcon(":/images/opentrack.png"); } }; |