summaryrefslogtreecommitdiff
path: root/src/ispell/ispell_checker.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ispell/ispell_checker.h')
-rw-r--r--src/ispell/ispell_checker.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/ispell/ispell_checker.h b/src/ispell/ispell_checker.h
index be14fc1..7e34e13 100644
--- a/src/ispell/ispell_checker.h
+++ b/src/ispell/ispell_checker.h
@@ -33,11 +33,12 @@
#include <glib.h> // give glib a chance to override MAXPATHLEN first before it is set in ispell.h
#include "ispell.h"
+#include "enchant.h"
class ISpellChecker
{
public:
- ISpellChecker();
+ ISpellChecker(EnchantBroker * broker);
~ISpellChecker();
bool checkWord(const char * const word, size_t len);
@@ -46,6 +47,9 @@ public:
bool requestDictionary (const char * szLang);
private:
+ EnchantBroker* m_broker;
+
+ ISpellChecker();
ISpellChecker(const ISpellChecker&); // no impl
void operator=(const ISpellChecker&); // no impl