diff options
| author | Wladimir J. van der Laan <[email protected]> | 2012-02-10 09:31:21 -0800 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2012-02-10 09:31:21 -0800 |
| commit | 26d9e2c19dc209ba5616e9fca9f521dd7ed94e81 (patch) | |
| tree | bd685a1a7ef43993ced14486cc34e391e04f6cc7 | |
| parent | Merge pull request #813 from dooglus/master (diff) | |
| parent | Enable accessible widgets Qt module on win32, so that people with screen read... (diff) | |
| download | discoin-26d9e2c19dc209ba5616e9fca9f521dd7ed94e81.tar.xz discoin-26d9e2c19dc209ba5616e9fca9f521dd7ed94e81.zip | |
Merge pull request #818 from laanwj/2012_02_win32_qtaccessible
Enable accessible widgets Qt module on win32
| -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; |