Small fix in lyxfunc (missing break)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@593 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jürgen Vigna 2000-03-08 15:11:29 +00:00
parent 23f2fead49
commit 34924681ca
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2000-03-08 Juergen Vigna <jug@sad.it>
* src/lyxfunc.C (Dispatch): forgot a break in the LFUN_INSET_ERT
2000-03-08 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/insets/insetcollapsable.h: fix Clone() declaration.

View File

@ -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());