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:
André Pönitz 2003-10-21 17:21:23 +00:00
parent 0fbee62e35
commit cc108cd96a

View File

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