Aspell 0.60.4 and the cvs version are now
usable on windows when compiled with msvc.

But there is a lyx related bug: this patch

Index: ControlSpellchecker.C
===================================================================
--- ControlSpellchecker.C       (revision 14851)
+++ ControlSpellchecker.C       (working copy)
@@ -259,11 +259,11 @@

 bool ControlSpellchecker::checkAlive()
 {
-       if (speller_->alive() && speller_->error().empty())
+       if (speller_ && speller_->alive() && speller_->error().empty())
                return true;

        string message;
-       if (speller_->error().empty())
+       if (!speller_ || speller_->error().empty())
                message = _("The spellchecker has died for some reason.\n"
                            "Maybe it has been killed.");
        else


avoids a crash but you come into a endless
dialog loop when you wanna close the spell
checker.

Peter

Reply via email to