summaryrefslogtreecommitdiffstats
path: root/src/gui
diff options
context:
space:
mode:
authorFrederik Gladhorn <frederik.gladhorn@nokia.com>2011-12-30 12:45:52 +0100
committerQt by Nokia <qt-info@nokia.com>2012-01-02 10:44:00 +0100
commit1323eebfbf1285dc349f1730f30c91d1c7214132 (patch)
treef6204c5441f16866acbe704a9d70ee1e435d7e3a /src/gui
parent6a1ee9667f42b98bd0a28d4beef8e15adbc241e1 (diff)
Remove env var to enable accessibility on linux.
Usually we don't have a plugin for this on linux anyway. But if we do, we should actually allow it to interface with the system. When using AT-SPI the plugin can detect if it should be active. Other plugins can fall back to using an env var if really needed. Change-Id: Ic9dcfa305e7cdafbf4a93bcc2dc9a0fcd9b9a7a2 Reviewed-by: Jan-Arve Sæther <jan-arve.saether@nokia.com>
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/accessible/qplatformaccessibility_qpa.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/gui/accessible/qplatformaccessibility_qpa.cpp b/src/gui/accessible/qplatformaccessibility_qpa.cpp
index 7df827552d..722e8a59bd 100644
--- a/src/gui/accessible/qplatformaccessibility_qpa.cpp
+++ b/src/gui/accessible/qplatformaccessibility_qpa.cpp
@@ -123,10 +123,7 @@ void QPlatformAccessibility::initialize()
if (isInit)
return;
isInit = true; // ### not atomic
-#ifdef Q_OS_UNIX
- if (qgetenv("QT_ACCESSIBILITY") != "1")
- return;
-#endif
+
#ifndef QT_NO_LIBRARY
const QStringList l = bridgeloader()->keys();
for (int i = 0; i < l.count(); ++i) {