]> git.lyx.org Git - lyx.git/blob - src/spellchecker.h
remove wrong sections
[lyx.git] / src / spellchecker.h
1 // -*- C++ -*-
2 #ifndef SPELLCHECKER_H
3 #define SPELLCHECKER_H
4
5 /* These functions are defined in lyx_cb.C */
6
7 class BufferView;
8
9 /** MarkLastWord should only be used immidiately after NextWord().
10  If you give control back to the user, you _have_ to call EndOfSpellCheck()
11  or SelectLastWord(), otherwise segfaults should appear.
12  */
13 //void EndOfSpellCheck();
14 ///
15 //void SelectLastWord();
16
17 /** This function has to be implemented by the spell checker.
18     It will show the spellcheker form*/ 
19 void ShowSpellChecker(BufferView *);
20 ///
21 void SpellCheckerOptions();
22
23 #endif