X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FTexRow.h;h=a4edc6c544113b8ab6a4cf3f1c5969d20eba2ae5;hb=4e69b9bac5e970572b9cf9169e3db9060c47e3b6;hp=55c9c25ff23c12297bf118d7e85db64ce0c584ff;hpb=a70e21a34e36f9e4caeacaa065cfdfc02bff86c3;p=lyx.git diff --git a/src/TexRow.h b/src/TexRow.h index 55c9c25ff2..a4edc6c544 100644 --- a/src/TexRow.h +++ b/src/TexRow.h @@ -26,7 +26,7 @@ namespace lyx { class TexRow { public: /// - TexRow() : lastid(-1), lastpos(-1) {} + TexRow() : lastid(-1), lastpos(-1), started(false) {} /// Clears structure void reset(); @@ -90,6 +90,8 @@ private: int lastid; /// Last position int lastpos; + /// Is id/pos already registered for current row? + bool started; };