]> git.lyx.org Git - lyx.git/blobdiff - src/lyxcursor.C
split LyXText::rowlist_ into individual Paragraph::rows_ chunks
[lyx.git] / src / lyxcursor.C
index 2ec6731cc9565815b57a86a3e7a7d9d0ac191093..fb298015452f491df3df0e8cc6a0b0e70641ac49 100644 (file)
@@ -13,7 +13,7 @@
 
 LyXCursor::LyXCursor()
        : par_(), pos_(0), boundary_(false),
-         x_(0), ix_(0), x_fix_(0), y_(0), iy_(0), row_(0)
+         x_(0), ix_(0), x_fix_(0), y_(0), iy_(0)
 {}
 
 
@@ -111,30 +111,6 @@ int LyXCursor::iy() const
 }
 
 
-void LyXCursor::row(RowList::iterator r)
-{
-       row_ = r;
-}
-
-
-RowList::iterator LyXCursor::row() const
-{
-       return row_;
-}
-
-
-void LyXCursor::irow(RowList::iterator r)
-{
-       irow_ = r;
-}
-
-
-RowList::iterator LyXCursor::irow() const
-{
-       return irow_;
-}
-
-
 bool operator==(LyXCursor const & a, LyXCursor const & b)
 {
        return a.par() == b.par()