diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-02-10 08:28:32 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-02-10 08:28:32 +0100 |
| commit | 2e5a781c644f09c259ad24c83c1444e882eab819 (patch) | |
| tree | 1e284495914ea5c48f5decec0e753becb494417b | |
| parent | Merge pull request #805 from luke-jr/gitian_deps (diff) | |
| download | discoin-2e5a781c644f09c259ad24c83c1444e882eab819.tar.xz discoin-2e5a781c644f09c259ad24c83c1444e882eab819.zip | |
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.pro | 2 | ||||
| -rw-r--r-- | src/init.cpp | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/bitcoin-qt.pro b/bitcoin-qt.pro index ff09e3822..678bec013 100644 --- a/bitcoin-qt.pro +++ b/bitcoin-qt.pro @@ -76,7 +76,7 @@ contains(FIRST_CLASS_MESSAGING, 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 d39e18e48..22f34aa75 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -21,6 +21,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; |