John's getLyXText() fix

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3147 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Allan Rae 2001-12-05 05:26:22 +00:00
parent 157d9442ba
commit 5f3773f2b8
2 changed files with 7 additions and 12 deletions

View File

@ -1,3 +1,8 @@
2001-12-05 John Levon <moz@compsoc.man.ac.uk>
* FormParagraph.C (getCurrentParagraph):
(apply): get the right LyXText !
2001-11-29 John Levon <moz@compsoc.man.ac.uk>
* FormParagraph.C: disallow page breaks in insets

View File

@ -63,13 +63,7 @@ void FormParagraph::disconnect()
Paragraph const * FormParagraph::getCurrentParagraph() const
{
LyXText * text = 0;
if (lv_->view()->theLockingInset())
text = lv_->view()->theLockingInset()->getLyXText(lv_->view());
if (!text)
text = lv_->view()->text;
return text->cursor.par();
return lv_->view()->getLyXText()->cursor.par();
}
@ -278,11 +272,7 @@ void FormParagraph::apply()
}
Spacing const spacing(linespacing, other_linespacing);
LyXText * text = 0;
if (lv_->view()->theLockingInset())
text = lv_->view()->theLockingInset()->getLyXText(lv_->view());
if (!text)
text = lv_->view()->text;
LyXText * text(lv_->view()->getLyXText());
text->setParagraph(lv_->view(), line_top, line_bottom, pagebreak_top,
pagebreak_bottom, space_top, space_bottom, spacing,
align, labelwidthstring, noindent);