fix: Sandbox doesn't build on Linux machines

fixes #423
This commit is contained in:
Khushboo Mehta 2021-10-05 13:01:09 +02:00 committed by Michał Cieślak
parent 315f91d737
commit c86d1d63df
1 changed files with 7 additions and 0 deletions

View File

@ -1,6 +1,8 @@
#include "spellchecker.h"
#ifdef Q_OS_MACOS
#include "hunspell.hxx"
#endif
#include <QTextCodec>
#include <QFile>
#include <QDebug>
@ -12,7 +14,9 @@
SpellChecker::SpellChecker(QObject *parent)
: QObject(parent)
#ifdef Q_OS_MACOS
, m_hunspell(nullptr)
#endif
, m_userDict("userDict_")
{
@ -36,7 +40,10 @@ bool SpellChecker::spell(const QString &word)
bool SpellChecker::isInit() const
{
#ifdef Q_OS_MACOS
return !m_hunspell;
#endif
}
void SpellChecker::initHunspell()