mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-12 16:50:39 +00:00
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:
parent
daa8296b7f
commit
a63942bee5
@ -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>
|
||||
|
||||
|
@ -47,7 +47,9 @@ void QSpellchecker::build_dialog()
|
||||
|
||||
void QSpellchecker::update_contents()
|
||||
{
|
||||
controller().check();
|
||||
if (isVisible() || controller().exitEarly()) {
|
||||
controller().check();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
@ -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
|
||||
|
@ -80,7 +80,8 @@ void FormSpellchecker::build()
|
||||
|
||||
void FormSpellchecker::update()
|
||||
{
|
||||
controller().check();
|
||||
if (isVisible() || controller().exitEarly())
|
||||
controller().check();
|
||||
}
|
||||
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user