]> git.lyx.org Git - lyx.git/blobdiff - src/lyxcursor.h
cosmetic fix
[lyx.git] / src / lyxcursor.h
index 32a2540579230b6ace5aad0dc130efb5ca410ead..8cbea6ce3d223b5c0e61dc5e41316bb0b7eb687d 100644 (file)
@@ -10,7 +10,6 @@
 #ifndef LYXCURSOR_H
 #define LYXCURSOR_H
 
-#include "RowList.h"
 #include "ParagraphList.h"
 #include "support/types.h"
 
@@ -79,20 +78,6 @@ public:
         * FIXME: explain why we need this ? especially for y...
         */
        int iy() const;
-       /// set the row of the paragraph the cursor is in
-       void row(RowList::iterator r);
-       /// return the row of the paragraph this cursor is in
-       RowList::iterator row() const;
-       /// set the stored next row
-       void irow(RowList::iterator r);
-       /**
-        * Return the next row, when this
-        * cursor is at the end of the previous row, for insets that take
-        * a full row.
-        *
-        * FIXME: explain why we need this ? especially for y...
-        */
-       RowList::iterator irow() const;
 private:
        /// The paragraph the cursor is in.
        ParagraphList::iterator par_;
@@ -124,10 +109,6 @@ private:
        int y_;
        /// the stored next-row y position
        int iy_;
-       /// the containing row
-       RowList::iterator row_;
-       /// the containing row for the next line
-       RowList::iterator irow_;
 };
 
 ///