From: John Levon Date: Mon, 27 Aug 2001 21:01:04 +0000 (+0000) Subject: clear the thesaurus list boxes !! X-Git-Tag: 1.6.10~20746 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=b8beae4a70ce64dd36ab7b7cdc457f17b654c357;p=features.git clear the thesaurus list boxes !! git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2599 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/frontends/qt2/ChangeLog b/src/frontends/qt2/ChangeLog index fa1927d65f..6dc93396d9 100644 --- a/src/frontends/qt2/ChangeLog +++ b/src/frontends/qt2/ChangeLog @@ -1,3 +1,25 @@ +2001-08-27 John Levon + + * QThesaurusDialog.C: whoops, forgot to clear before update + +2001-08-27 John Levon + + * QBibtex.C: + * QBibtexDialog.h: + * QBibtexDialog.C: + * ui/QBibtexDialog.ui: fix some things, add + delete button + + * QExternalDialog.C: fix file dialog thing + + * QThesaurus.h: + * QThesaurus.C: + * QThesaurusDialog.h: + * QThesaurusDialog.C: + * ui/QThesaurusDialog.ui: fix compile, get working + + * moc/Makefile.am: fix builddir != srcdir + 2001-08-27 John Levon * ui/*.ui: diff --git a/src/frontends/qt2/QThesaurusDialog.C b/src/frontends/qt2/QThesaurusDialog.C index 516cdc263d..d9553845a5 100644 --- a/src/frontends/qt2/QThesaurusDialog.C +++ b/src/frontends/qt2/QThesaurusDialog.C @@ -80,6 +80,12 @@ void QThesaurusDialog::updateLists() ControlThesaurus & control(form_->controller()); string const entry(entryED->text().latin1()); + nounsLB->clear(); + verbsLB->clear(); + adjectivesLB->clear(); + adverbsLB->clear(); + otherLB->clear(); + std::vector matches; matches = control.getNouns(entry);