[LyX/master] Add information to Row::operator<<

Jean-Marc Lasgouttes lasgouttes at lyx.org
Thu Jan 5 10:12:00 UTC 2023


commit 7c5bad56c4cd4e927d449963cb9114d4fddf1fcd
Author: Jean-Marc Lasgouttes <lasgouttes at lyx.org>
Date:   Thu Jan 5 11:55:32 2023 +0100

    Add information to Row::operator<<
---
 src/Row.cpp |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/Row.cpp b/src/Row.cpp
index 6edde19..fea9a38 100644
--- a/src/Row.cpp
+++ b/src/Row.cpp
@@ -328,7 +328,7 @@ ostream & operator<<(ostream & os, Row::Elements const & elts)
 
 ostream & operator<<(ostream & os, Row const & row)
 {
-	os << " pos: " << row.pos_ << " end: " << row.end_
+	os << " pit: " << row.pit_ << " pos: " << row.pos_ << " end: " << row.end_
 	   << " left_margin: " << row.left_margin
 	   << " width: " << row.dim_.wid
 	   << " right_margin: " << row.right_margin
@@ -337,7 +337,8 @@ ostream & operator<<(ostream & os, Row const & row)
 	   << " separator: " << row.separator
 	   << " label_hfill: " << row.label_hfill
 	   << " end_boundary: " << row.end_boundary()
-	   << " flushed: " << row.flushed() << "\n";
+	   << " flushed: " << row.flushed_
+	   << " rtl=" << row.rtl_ << "\n";
 	// We cannot use the operator above, unfortunately
 	double x = row.left_margin;
 	for (Row::Element const & e : row.elements_) {


More information about the lyx-cvs mailing list