mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-27 03:36:39 +00:00
remove debug message
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7945 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
0fbee62e35
commit
cc108cd96a
11
src/text.C
11
src/text.C
@ -2143,14 +2143,13 @@ int LyXText::redoParagraphInternal(ParagraphList::iterator pit)
|
||||
Row row(z);
|
||||
z = rowBreakPoint(pit, row) + 1;
|
||||
row.end(z);
|
||||
lyxerr << "break point at " << z << "/" << pit->size() << endl;
|
||||
pit->rows.push_back(row);
|
||||
RowList::iterator rit = boost::prior(pit->rows.end());
|
||||
int const f = fill(pit, *rit, ww);
|
||||
int const f = fill(pit, row, ww);
|
||||
int const w = ww - f;
|
||||
par_width = std::max(par_width, w);
|
||||
rit->fill(f);
|
||||
rit->width(w);
|
||||
row.fill(f);
|
||||
row.width(w);
|
||||
pit->rows.push_back(row);
|
||||
RowList::iterator rit = boost::prior(pit->rows.end());
|
||||
prepareToPrint(pit, rit);
|
||||
setHeightOfRow(pit, *rit);
|
||||
rit->y_offset(pit->height);
|
||||
|
Loading…
Reference in New Issue
Block a user