mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 18:13:05 +02:00
Fix non-android builds(performHapticFeedback)
This commit is contained in:
parent
83399e4c6d
commit
55a946c6c7
1 changed files with 2 additions and 0 deletions
|
@ -7943,7 +7943,9 @@ void Application::openAndroidActivity(const QString& activityName) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void Application::performHapticFeedback(const QString& feedbackConstant) {
|
void Application::performHapticFeedback(const QString& feedbackConstant) {
|
||||||
|
#if defined(Q_OS_ANDROID)
|
||||||
AndroidHelper::instance().performHapticFeedback(feedbackConstant);
|
AndroidHelper::instance().performHapticFeedback(feedbackConstant);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
#if defined(Q_OS_ANDROID)
|
#if defined(Q_OS_ANDROID)
|
||||||
|
|
Loading…
Reference in a new issue