]> git.lyx.org Git - lyx.git/blobdiff - src/lyxcursor.h
remove debug message
[lyx.git] / src / lyxcursor.h
index c36812befd3ac70d82f49f08ab19a6df233d88ab..9c37d0dff992c13ddd47cadc725814327b615475 100644 (file)
@@ -52,6 +52,10 @@ public:
        ///
        int y() const;
        ///
+       void iy(int i);
+       ///
+       int iy() const;
+       ///
        void row(Row * r);
        ///
        Row * row() const;
@@ -68,6 +72,9 @@ private:
        int x_fix_;
        ///
        int y_;
+       /// the y position of the position before the inset when we put
+       /// the cursor on the end of the row before, otherwise equal to y.
+       int iy_;
        ///
        Row * row_;
 };