mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-07-03 20:06:58 +03:00
Add checks for QT_NO_ACCESSIBILITY to prevent build issues with Qt without accessibility
This commit is contained in:
parent
ce7917048a
commit
dec6759e61
5 changed files with 13 additions and 0 deletions
|
|
@ -6,6 +6,8 @@
|
|||
#include <qaccessible.h>
|
||||
#include <qheaderview.h>
|
||||
|
||||
#ifndef QT_NO_ACCESSIBILITY
|
||||
|
||||
QAccessibleInterface *groupViewAccessibleFactory(const QString &classname, QObject *object)
|
||||
{
|
||||
QAccessibleInterface *iface = 0;
|
||||
|
|
@ -772,3 +774,5 @@ QAccessibleInterface *AccessibleGroupViewItem::child(int) const
|
|||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
#endif /* !QT_NO_ACCESSIBILITY */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue