]> git.lyx.org Git - lyx.git/blobdiff - src/lyxcursor.h
More fixes to insettabular/text (and some missing features added).
[lyx.git] / src / lyxcursor.h
index 9137f48d4e4cc9ba2848c263ae34f22eed6e5d2a..8a9ac616e0abd040e81027cc550b9b7efa591a2e 100644 (file)
@@ -47,9 +47,9 @@ public:
        ///
        int x_fix() const;
        ///
-       void y(unsigned long i);
+       void y(int i);
        ///
-       unsigned long y() const;
+       int y() const;
        ///
        void row(Row * r);
        ///
@@ -68,12 +68,12 @@ private:
        ///
        int x_fix_;
        ///
-       unsigned long y_;
+       int y_;
        ///
        Row * row_;
 };
 
-
+///
 inline
 bool operator==(LyXCursor const & a, LyXCursor const & b)
 {
@@ -82,7 +82,7 @@ bool operator==(LyXCursor const & a, LyXCursor const & b)
                && a.boundary() == b.boundary();
 }
 
-
+///
 inline
 bool operator!=(LyXCursor const & a, LyXCursor const & b)
 {