aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@qt.io>2016-12-09 13:54:22 +0100
committerMitch Curtis <mitch.curtis@qt.io>2016-12-12 08:52:31 +0000
commitfa5cd9cc3c6b2579ff1d3ffe32afc00ac6a87835 (patch)
treea49a9fe4f104202aa392fa84a5f5d6b6537bf2f1
parentadabc870bc1e60bb57edb6be21471d1c3f83b923 (diff)
Hunspell: fix source builds
- dictmgr.hxx and dictmgr.cxx files were removed from hunspell - Some files were complaining about a missing <hunspell/hunspell.h> include. Changing it to <hunspell.h> fixed it. Task-number: QTBUG-57415 Change-Id: Ib2331bf28b3f60370730ca3534469e463d062dee Reviewed-by: Jarkko Koivikko <jarkko.koivikko@code-q.fi> Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
-rw-r--r--src/virtualkeyboard/3rdparty/hunspell/hunspell.pro2
-rw-r--r--src/virtualkeyboard/hunspellinputmethod_p.cpp2
-rw-r--r--src/virtualkeyboard/hunspellworker.h2
3 files changed, 2 insertions, 4 deletions
diff --git a/src/virtualkeyboard/3rdparty/hunspell/hunspell.pro b/src/virtualkeyboard/3rdparty/hunspell/hunspell.pro
index 5421bc4e..798df897 100644
--- a/src/virtualkeyboard/3rdparty/hunspell/hunspell.pro
+++ b/src/virtualkeyboard/3rdparty/hunspell/hunspell.pro
@@ -16,7 +16,6 @@ SOURCES += \
src/hunspell/affentry.cxx \
src/hunspell/affixmgr.cxx \
src/hunspell/csutil.cxx \
- src/hunspell/dictmgr.cxx \
src/hunspell/filemgr.cxx \
src/hunspell/hashmgr.cxx \
src/hunspell/hunspell.cxx \
@@ -32,7 +31,6 @@ HEADERS += \
src/hunspell/atypes.hxx \
src/hunspell/baseaffix.hxx \
src/hunspell/csutil.hxx \
- src/hunspell/dictmgr.hxx \
src/hunspell/filemgr.hxx \
src/hunspell/hashmgr.hxx \
src/hunspell/htypes.hxx \
diff --git a/src/virtualkeyboard/hunspellinputmethod_p.cpp b/src/virtualkeyboard/hunspellinputmethod_p.cpp
index 34f343d3..3bbe589e 100644
--- a/src/virtualkeyboard/hunspellinputmethod_p.cpp
+++ b/src/virtualkeyboard/hunspellinputmethod_p.cpp
@@ -29,7 +29,7 @@
#include "hunspellinputmethod_p.h"
#include "inputcontext.h"
-#include <hunspell/hunspell.h>
+#include <hunspell.h>
#include <QStringList>
#include <QDir>
#include "virtualkeyboarddebug.h"
diff --git a/src/virtualkeyboard/hunspellworker.h b/src/virtualkeyboard/hunspellworker.h
index 73e2c187..9b23e092 100644
--- a/src/virtualkeyboard/hunspellworker.h
+++ b/src/virtualkeyboard/hunspellworker.h
@@ -35,7 +35,7 @@
#include <QMutex>
#include <QStringList>
#include <QSharedPointer>
-#include <hunspell/hunspell.h>
+#include <hunspell.h>
QT_BEGIN_NAMESPACE
class QTextCodec;