From 2351c832a7941a891ea11513c83209102a37ae7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrgen=20Vigna?= Date: Wed, 6 Jun 2001 08:16:29 +0000 Subject: [PATCH] Set inset_owner in BreakParagraph. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_1_6@2093 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/paragraph.C | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/paragraph.C b/src/paragraph.C index 30483ca859..2793fd0537 100644 --- a/src/paragraph.C +++ b/src/paragraph.C @@ -1458,6 +1458,9 @@ void LyXParagraph::BreakParagraph(BufferParams const & bparams, LyXParagraph * tmp = new LyXParagraph(this); #endif + if (inset_owner) + tmp->SetInsetOwner(inset_owner); + #ifndef NEW_INSETS tmp->footnoteflag = footnoteflag; tmp->footnotekind = footnotekind;