Patch from Martin Vermeer for bug 2218.

* src/frontends/xforms/FormSpellchecker.C (update): 
	* src/frontends/qt2/QSpellchecker.C (update_contents): fix bug 
	2218: Spellchecker doesn't pop up dialogue window for the first 
	misspelled word.




git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_4_X@14247 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2006-06-27 12:20:59 +00:00
parent daa8296b7f
commit a63942bee5
5 changed files with 22 additions and 4 deletions

View File

@ -1,9 +1,16 @@
2006-06-27 Martin Vermeer <martin.vermeer@hut.fi>
* QSpellchecker.C (update_contents): fix bug 2218: Spellchecker
doesn't pop up dialogue window for the first misspelled word.
2006-06-27 Enrico Forestieri <forenr@tlc.unipr.it>
* QPrefs.C (apply, update_contents): rename cygwin_path_fix as
windows_style_tex_paths taking into account updated checkbutton label.
windows_style_tex_paths taking into account updated checkbutton
label.
* ui/QPrefCygwinPathModule.ui: update checkbutton label and description.
* ui/QPrefCygwinPathModule.ui: update checkbutton label and
description.
2006-06-16 Jean-Marc Lasgouttes <lasgouttes@lyx.org>

View File

@ -47,7 +47,9 @@ void QSpellchecker::build_dialog()
void QSpellchecker::update_contents()
{
controller().check();
if (isVisible() || controller().exitEarly()) {
controller().check();
}
}

View File

@ -1,3 +1,8 @@
2006-06-27 Martin Vermeer <martin.vermeer@hut.fi>
* FormSpellchecker.C (update): fix bug 2218: Spellchecker doesn't
pop up dialogue window for the first misspelled word.
2006-06-27 Enrico Forestieri <forenr@tlc.unipr.it>
* FormPreferences.C (apply): rename cygwin_path_fix as

View File

@ -80,7 +80,8 @@ void FormSpellchecker::build()
void FormSpellchecker::update()
{
controller().check();
if (isVisible() || controller().exitEarly())
controller().check();
}

View File

@ -137,6 +137,9 @@ What's new
- Fix crash on exit on MacOS X, and the well known "Mutex destroy failure"
error message on linux (qt frontend, bugs 2549 and 1029).
- Fix bug where the spellchecker doesn't pop up dialogue window for
the first misspelled word (bug 2218).
* Configuration/Installation:
- Replace the old sh version of lib/configure with the new python version