]> git.lyx.org Git - features.git/commitdiff
Fix crash.
authorAngus Leeming <leeming@lyx.org>
Tue, 12 Nov 2002 13:37:34 +0000 (13:37 +0000)
committerAngus Leeming <leeming@lyx.org>
Tue, 12 Nov 2002 13:37:34 +0000 (13:37 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@5616 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/controllers/ChangeLog
src/frontends/controllers/ControlSpellchecker.C

index 78792ef46278e72532b847874f96779d611291c0..aaea7abd251f4263f077d5b705b978d7f4cec190 100644 (file)
@@ -1,16 +1,19 @@
+2002-11-12  Angus Leeming  <leeming@lyx.org>
+
+       * ControlSpellchecker.C (check): fix crash
+
 2002-11-07  Edwin Leuven  <leuven@fee.uva.nl>
 
        * ControlDocument.[Ch]: Remove unused method
 
-2002-11-07  leeming  <leeming@e182182.fee.uva.nl>
+2002-11-07  Angus Leeming  <leeming@lyx.org>
 
        * ChangeLog, biblio.C: * Add RegEx to the compiled boost files.
        * clean-up the search code in biblio.C.
 
-2002-11-07  levon  <levon@e182182.fee.uva.nl>
+2002-11-07  John Levon  <levon@movementarian.org>
 
-       * ControlGraphics.C:
-       QGraphics fixes
+       * ControlGraphics.C: QGraphics fixes
 
 2002-11-07  Juergen Spitzmueller <j.spitzmueller@gmx.de>
 
index a0e9e62aeec24f8ad179b4e030a33f5092764888..61d36ad103db18bc9e67ef2c6d356a8de2272d56 100644 (file)
@@ -106,7 +106,7 @@ void ControlSpellchecker::check()
                        view().partialUpdate(0);
                }
 
-               if (!speller_->alive()) {
+               if (!speller_ || !speller_->alive()) {
                        clearParams();
                        stop();
                        return;