]> git.lyx.org Git - features.git/commitdiff
Add information to Row::operator<<
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Thu, 5 Jan 2023 10:55:32 +0000 (11:55 +0100)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Thu, 5 Jan 2023 10:56:56 +0000 (11:56 +0100)
src/Row.cpp

index 6edde19e7548f11fa3b27122bd492a1e9e44f427..fea9a38943ef3083c26eaddfd69a5a7eb4cc3c66 100644 (file)
@@ -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_) {