From f946f89871365d9d3ba91b0bf181fbfe09187f6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20P=C3=B6nitz?= Date: Wed, 29 May 2002 12:22:44 +0000 Subject: [PATCH] white space git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4261 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/sp_pspell.h | 85 +++++++++++++++++++++++-------------------------- 1 file changed, 40 insertions(+), 45 deletions(-) diff --git a/src/sp_pspell.h b/src/sp_pspell.h index 5cd0266a82..9e7ff560e2 100644 --- a/src/sp_pspell.h +++ b/src/sp_pspell.h @@ -12,52 +12,47 @@ class BufferParams; class PSpell : public SpellBase { - public: +public: + /// + PSpell(); + /// + PSpell(BufferParams const & params, string const & lang); + /// + ~PSpell(); + /// initialize spell checker + void initialize(BufferParams const & params, string const & lang); + /// + bool alive() { return alive_; } + /// clean up after error + void cleanUp(); + /// check word + enum spellStatus check(string const & word); + /// close spellchecker + void close(); + /// + void insert(string const & word); + /// + void accept(string const & word); + /// store replacement + void store(string const & mis, string const & cor); + /// + char const * nextMiss(); + /// + char const * error(); - PSpell(); - - PSpell(BufferParams const & params, string const & lang); - - ~PSpell(); - - /// initialize spell checker - void initialize(BufferParams const & params, string const & lang); - - bool alive() { return alive_; } - - /// clean up after error - void cleanUp(); - - /// check word - enum spellStatus check(string const & word); - - /// close spellchecker - void close(); - - void insert(string const & word); - - void accept(string const & word); - - /// store replacement - void store(string const & mis, string const & cor); - - char const * nextMiss(); - - char const * error(); - - private: - - PspellManager * sc; - - PspellStringEmulation * els; - - PspellCanHaveError * spell_error_object; - - spellStatus flag; - - const char * error_; - - bool alive_; +private: + /// + PspellManager * sc; + /// + PspellStringEmulation * els; + /// + PspellCanHaveError * spell_error_object; + /// + spellStatus flag; + /// + const char * error_; + /// + bool alive_; }; #endif