* src/frontends/qt4/QErrorList.cpp:

- do not close the dialog on double click (bug 4090).

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_5_X@21349 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Spitzmüller 2007-11-01 17:48:14 +00:00
parent 147e31bff5
commit fd4fa37926
2 changed files with 2 additions and 2 deletions

View File

@ -36,8 +36,6 @@ QErrorListDialog::QErrorListDialog(QErrorList * form)
setupUi(this); setupUi(this);
connect(closePB, SIGNAL(clicked()), connect(closePB, SIGNAL(clicked()),
form, SLOT(slotClose())); form, SLOT(slotClose()));
connect(errorsLW, SIGNAL( itemActivated(QListWidgetItem *)),
form, SLOT(slotClose()));
connect( errorsLW, SIGNAL( itemClicked(QListWidgetItem *)), connect( errorsLW, SIGNAL( itemClicked(QListWidgetItem *)),
this, SLOT(select_adaptor(QListWidgetItem *))); this, SLOT(select_adaptor(QListWidgetItem *)));
} }

View File

@ -99,6 +99,8 @@ What's new
- Fix bug where the spellchecker didn't update the screen display on the last of - Fix bug where the spellchecker didn't update the screen display on the last of
several misspelt words (bug 3586). several misspelt words (bug 3586).
- Do not close the error dialog on double click (bug 4090).
* DOCUMENTATION * DOCUMENTATION