aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2012-02-10 08:28:32 +0100
committerLuke Dashjr <luke-jr+git@utopios.org>2012-02-14 17:13:28 -0500
commit4c38fbae959c69e524e2f7453a221b5f29a5d12f (patch)
tree42f7c6dd6ff6baa1f413c85083878ed441e16813
parent8ad6996cc38c7e5e21698db91759fcc3e8900545 (diff)
downloadbitcoin-4c38fbae959c69e524e2f7453a221b5f29a5d12f.tar.xz
Enable accessible widgets Qt module on win32, so that people with screen readers such as NVDA can make sense of it.
-rw-r--r--bitcoin-qt.pro2
-rw-r--r--src/init.cpp1
2 files changed, 2 insertions, 1 deletions
diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro
index 19349c708d..790c0751ca 100644
--- a/bitcoin-qt.pro
+++ b/bitcoin-qt.pro
@@ -62,7 +62,7 @@ contains(USE_SSL, 1) {
contains(BITCOIN_NEED_QT_PLUGINS, 1) {
DEFINES += BITCOIN_NEED_QT_PLUGINS
- QTPLUGIN += qcncodecs qjpcodecs qtwcodecs qkrcodecs
+ QTPLUGIN += qcncodecs qjpcodecs qtwcodecs qkrcodecs qtaccessiblewidgets
}
!windows {
diff --git a/src/init.cpp b/src/init.cpp
index 3ca0dcf251..51e9ed604e 100644
--- a/src/init.cpp
+++ b/src/init.cpp
@@ -20,6 +20,7 @@ Q_IMPORT_PLUGIN(qcncodecs)
Q_IMPORT_PLUGIN(qjpcodecs)
Q_IMPORT_PLUGIN(qtwcodecs)
Q_IMPORT_PLUGIN(qkrcodecs)
+Q_IMPORT_PLUGIN(qtaccessiblewidgets)
#endif
using namespace std;