]> git.lyx.org Git - lyx.git/blobdiff - src/SpellChecker.h
Fix commented out code
[lyx.git] / src / SpellChecker.h
index f87ef122b9b00f59303552a9015aa60a13c34811..dd13a76da7eb90b6240139b29dba489fe6661645 100644 (file)
@@ -47,6 +47,8 @@ public:
                NO_DICTIONARY
        };
 
+       SpellChecker() : change_number_(0) {}
+
        virtual ~SpellChecker() {}
 
        /// does the spell check failed
@@ -62,6 +64,9 @@ public:
        /// Gives suggestions.
        virtual void suggest(WordLangTuple const &, docstring_list & suggestions) = 0;
 
+       /// Lemmatizing: return stem of word (used by Thesaurus).
+       virtual void stem(WordLangTuple const &, docstring_list & suggestions) = 0;
+
        /// insert the given word into the personal dictionary
        virtual void insert(WordLangTuple const &) = 0;
 
@@ -76,7 +81,7 @@ public:
 
        /// how many valid dictionaries were found
        virtual int numDictionaries() const = 0;
-       
+
        /// if speller can spell check whole paragraph return true
        virtual bool canCheckParagraph() const { return false; }