]> git.lyx.org Git - features.git/commitdiff
clear the thesaurus list boxes !!
authorJohn Levon <levon@movementarian.org>
Mon, 27 Aug 2001 21:01:04 +0000 (21:01 +0000)
committerJohn Levon <levon@movementarian.org>
Mon, 27 Aug 2001 21:01:04 +0000 (21:01 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2599 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt2/ChangeLog
src/frontends/qt2/QThesaurusDialog.C

index fa1927d65f8991a765a84ee2ab9f94ecd07709eb..6dc93396d951c80e13b5a206bcf99775da144da6 100644 (file)
@@ -1,3 +1,25 @@
+2001-08-27  John Levon  <moz@compsoc.man.ac.uk>
+
+       * QThesaurusDialog.C: whoops, forgot to clear before update
+2001-08-27  John Levon  <moz@compsoc.man.ac.uk>
+
+       * 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  <moz@compsoc.man.ac.uk>
 
        * ui/*.ui: 
index 516cdc263d299eb16e0f3440bf5b870bb310a632..d9553845a5cb2a6b4a01410c3baaf1c1200ae406 100644 (file)
@@ -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<string> matches;
 
        matches = control.getNouns(entry);