From: Asger Ottar Alstrup Date: Sun, 29 Jul 2001 11:57:09 +0000 (+0000) Subject: Fix broken updating of TOC X-Git-Tag: 1.6.10~20962 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=952ee7b2b9e3fa535b0812da13f43b13f195c3b9;p=features.git Fix broken updating of TOC git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2383 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/frontends/xforms/ChangeLog b/src/frontends/xforms/ChangeLog index 19e2f9ab32..91f207901a 100644 --- a/src/frontends/xforms/ChangeLog +++ b/src/frontends/xforms/ChangeLog @@ -1,3 +1,8 @@ +2001-07-29 Asger Alstrup Nielsen + + * FormToc.C (updateType): Fix problem with TOC that couldn't be + updated because the type list was not updated. + 2001-07-26 Angus Leeming * forms/form_aboutlyx.fd: made a bit bigger to get the Copyright & diff --git a/src/frontends/xforms/FormToc.C b/src/frontends/xforms/FormToc.C index 8691bfa3b2..b9d0a11745 100644 --- a/src/frontends/xforms/FormToc.C +++ b/src/frontends/xforms/FormToc.C @@ -71,6 +71,13 @@ ButtonPolicy::SMInput FormToc::input(FL_OBJECT *, long) void FormToc::updateType() { + // Update the choice list from scratch + fl_clear_choice(dialog_->choice_toc_type); + string const choice = + " " + getStringFromVector(controller().getTypes(), " | ") + " "; + fl_addto_choice(dialog_->choice_toc_type, choice.c_str()); + + // And select the correct one string const type = toc::getType(controller().params().getCmdName()); fl_set_choice(dialog_->choice_toc_type, 1);