]> git.lyx.org Git - lyx.git/blobdiff - src/AspellChecker.h
Partial fox for bug #6622: Display \utilde on screen correctly.
[lyx.git] / src / AspellChecker.h
index 4477d31241f4baf90592ea1a6f4d80a62f850b99..dba55dc877910064e70590f01e5e2a09685b34c2 100644 (file)
@@ -23,20 +23,17 @@ public:
        AspellChecker();
        ~AspellChecker();
 
-       /// check the given word and return the result
+       /// \name SpellChecker inherited methods
+       //@{
        enum Result check(WordLangTuple const &);
-
-       /// insert the given word into the personal dictionary
+       void suggest(WordLangTuple const &, docstring_list &);
        void insert(WordLangTuple const &);
-
-       /// accept the given word temporarily
+       void remove(WordLangTuple const &);
        void accept(WordLangTuple const &);
-
-       /// return the next near miss after a SUGGESTED_WORDS result
-       docstring const nextMiss();
-
-       /// give an error message on messy exit
+       bool hasDictionary(Language const * lang) const;
        docstring const error();
+       void advanceChangeNumber();
+       //@}
 
 private:
        struct Private;