diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-12-09 18:19:15 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-12-09 18:22:04 +0100 |
commit | 97f74d1e7b37cf15d4763999e1287a665eeedcec (patch) | |
tree | 752b5fce78d2d4d74e0934712dbbd8fd3fb8d72d /proto-iokit-foohid/foohidjoystick.cpp | |
parent | 4f9c633bc9a661fbeb367e950f6789d8de6782e6 (diff) |
many: use otr_tr for non-qobject translation
I haven't even compile-tested Linux and OSX-specific bits.
Diffstat (limited to 'proto-iokit-foohid/foohidjoystick.cpp')
-rw-r--r-- | proto-iokit-foohid/foohidjoystick.cpp | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/proto-iokit-foohid/foohidjoystick.cpp b/proto-iokit-foohid/foohidjoystick.cpp index 17a4bcb5..0b305d08 100644 --- a/proto-iokit-foohid/foohidjoystick.cpp +++ b/proto-iokit-foohid/foohidjoystick.cpp @@ -7,7 +7,7 @@ #include "foohidjoystick.h" -#include <QCoreApplication> +#include "compat/macros.hpp" const char FOOHID_SERVICE_NAME[] = "it_unbit_foohid"; @@ -51,7 +51,7 @@ static bool connectToService(io_connect_t *connection, QString *errorMessage) IOServiceMatching(FOOHID_SERVICE_NAME), &iterator); if (ret != KERN_SUCCESS) { - *errorMessage = QCoreApplication::translate("iokit-foohid", "Unable to find FooHID IOService."); + *errorMessage = otr_tr("Unable to find FooHID IOService."); return false; } // Iterate over services and try to open connection @@ -66,7 +66,7 @@ static bool connectToService(io_connect_t *connection, QString *errorMessage) } IOObjectRelease(iterator); if (!found) { - *errorMessage = QCoreApplication::translate("iokit-foohid", "Unable to connect to FooHID IOService."); + *errorMessage = otr_tr("Unable to connect to FooHID IOService."); return false; } return true; @@ -89,8 +89,7 @@ FooHIDJoystick::FooHIDJoystick(const QByteArray &name, const QByteArray &serialN deviceCreated = createDevice(); _hasError = !deviceCreated; if (!deviceCreated) - _errorMessage = QCoreApplication::translate("iokit-foohid", - "Failed to create virtual joystick"); + _errorMessage = otr_tr("Failed to create virtual joystick"); } } @@ -117,8 +116,7 @@ void FooHIDJoystick::setValue(JoystickValues newValues) values = newValues; if (!sendToDevice()) { _hasError = true; - _errorMessage = QCoreApplication::translate("iokit-foohid", - "Failed to send values to virtual joystick"); + _errorMessage = otr_tr("Failed to send values to virtual joystick"); } } |