]> git.lyx.org Git - lyx.git/blobdiff - src/lyxcursor.h
Applied Angus patch to compile on DEC C++ and to avoid name clashes
[lyx.git] / src / lyxcursor.h
index 60ad1e0bfbe4386b2fc85d2dd55c3fc1703c4f4a..a6ffefc9adbbe45f281fa2c4c2cb5a38abf0e616 100644 (file)
@@ -24,6 +24,7 @@ struct Row;
  */
 class LyXCursor {
 public:
+       LyXCursor();
        ///
        void par(LyXParagraph * p);
        ///
@@ -47,9 +48,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,7 +69,7 @@ private:
        ///
        int x_fix_;
        ///
-       unsigned long y_;
+       int y_;
        ///
        Row * row_;
 };