From cc108cd96a8c8133ef9f2373a697bbf112a6aa50 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andr=C3=A9=20P=C3=B6nitz?= Date: Tue, 21 Oct 2003 17:21:23 +0000 Subject: [PATCH] remove debug message git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7945 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/text.C | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/text.C b/src/text.C index 2c76feea3c..dcc0cbcfb8 100644 --- a/src/text.C +++ b/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); -- 2.39.5