summaryrefslogtreecommitdiffstats
path: root/application/groupview/GroupView.cpp
diff options
context:
space:
mode:
authorkb1000 <kaeptmblaubaer1000@gmail.com>2019-10-01 14:28:06 +0200
committerkb1000 <kaeptmblaubaer1000@gmail.com>2019-10-01 14:28:06 +0200
commitdec6759e61cc844802b4eb105fed957c151e96ac (patch)
treeb3c5091fe1d12f978c31e3fe82040e28e70ab913 /application/groupview/GroupView.cpp
parentce7917048a2bdac7e74548a849a518fcf83226fa (diff)
downloadMultiMC-dec6759e61cc844802b4eb105fed957c151e96ac.tar
MultiMC-dec6759e61cc844802b4eb105fed957c151e96ac.tar.gz
MultiMC-dec6759e61cc844802b4eb105fed957c151e96ac.tar.lz
MultiMC-dec6759e61cc844802b4eb105fed957c151e96ac.tar.xz
MultiMC-dec6759e61cc844802b4eb105fed957c151e96ac.zip
Add checks for QT_NO_ACCESSIBILITY to prevent build issues with Qt without accessibility
Diffstat (limited to 'application/groupview/GroupView.cpp')
-rw-r--r--application/groupview/GroupView.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/application/groupview/GroupView.cpp b/application/groupview/GroupView.cpp
index ff0daee4..5ccbfd39 100644
--- a/application/groupview/GroupView.cpp
+++ b/application/groupview/GroupView.cpp
@@ -93,11 +93,13 @@ void GroupView::currentChanged(const QModelIndex& current, const QModelIndex& pr
{
QAbstractItemView::currentChanged(current, previous);
// TODO: for accessibility support, implement+register a factory, steal QAccessibleTable from Qt and return an instance of it for GroupView.
+#ifndef QT_NO_ACCESSIBILITY
if (QAccessible::isActive() && current.isValid()) {
QAccessibleEvent event(this, QAccessible::Focus);
event.setChild(current.row());
QAccessible::updateAccessibility(&event);
}
+#endif /* !QT_NO_ACCESSIBILITY */
}