diff --git a/ChangeLog b/ChangeLog index f0860c9c31..520dc1506f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2000-03-08 Juergen Vigna + + * src/lyxfunc.C (Dispatch): forgot a break in the LFUN_INSET_ERT + 2000-03-08 Jean-Marc Lasgouttes * src/insets/insetcollapsable.h: fix Clone() declaration. diff --git a/src/lyxfunc.C b/src/lyxfunc.C index e2db299938..54d86baf64 100644 --- a/src/lyxfunc.C +++ b/src/lyxfunc.C @@ -1930,6 +1930,7 @@ string LyXFunc::Dispatch(int ac, owner->view()->insertInset(new_inset); new_inset->Edit(owner->view(), 0, 0, 0); } + break; case LFUN_INSET_FOOTNOTE: { InsetFoot * new_inset = new InsetFoot(owner->buffer());