X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FRow.h;h=156fd9f671eefb166af633ebb99f1d6609b6aa85;hb=3bf1b97ae547aea5d0243e41b2d8af463a6e40c5;hp=a4be0ad9512dd01d82ccab4b65d73845b8572962;hpb=e82cead90f4d9b1ffb0d4d4cad7140807e49e382;p=features.git diff --git a/src/Row.h b/src/Row.h index a4be0ad951..156fd9f671 100644 --- a/src/Row.h +++ b/src/Row.h @@ -141,7 +141,7 @@ public: Change change; // is it possible to add contents to this element? bool final = false; - // properties with respect to row breaking (made of RowFlag enums) + // properties with respect to row breaking (made of RowFlag enumerators) int row_flags = Inline; friend std::ostream & operator<<(std::ostream & os, Element const & row); @@ -206,9 +206,9 @@ public: /// pos_type endpos() const { return end_; } /// - void right_boundary(bool b) { right_boundary_ = b; } + void end_boundary(bool b) { end_boundary_ = b; } /// - bool right_boundary() const { return right_boundary_; } + bool end_boundary() const { return end_boundary_; } /// void flushed(bool b) { flushed_ = b; } /// @@ -368,7 +368,7 @@ private: /// one behind last pos covered by this row pos_type end_ = 0; // Is there a boundary at the end of the row (display inset...) - bool right_boundary_ = false; + bool end_boundary_ = false; // Shall the row be flushed when it is supposed to be justified? bool flushed_ = false; /// Row dimension.