mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-23 02:14:50 +00:00
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:
parent
157d9442ba
commit
5f3773f2b8
@ -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
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user