]> git.lyx.org Git - lyx.git/blobdiff - src/TexRow.h
Do not check for LaTeX fonts if we use nonTeXFont
[lyx.git] / src / TexRow.h
index 55c9c25ff23c12297bf118d7e85db64ce0c584ff..a4edc6c544113b8ab6a4cf3f1c5969d20eba2ae5 100644 (file)
@@ -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;
 };