]> git.lyx.org Git - lyx.git/blobdiff - src/lyxcursor.C
Point fix, earlier forgotten
[lyx.git] / src / lyxcursor.C
index 742ee85f1bdd54c82b9e320a029524a57f4dcdd5..c7f62cc713adf115c9946c79033113e92686d228 100644 (file)
@@ -18,7 +18,7 @@
 
 LyXCursor::LyXCursor()
        : par_(), pos_(0), boundary_(false),
-         x_(0), ix_(0), x_fix_(0), y_(0), iy_(0)
+         x_(0), x_fix_(0), y_(0)
 {}
 
 
@@ -69,17 +69,6 @@ int LyXCursor::x() const
 }
 
 
-void LyXCursor::ix(int n)
-{
-       ix_ = n;
-}
-
-int LyXCursor::ix() const
-{
-       return ix_;
-}
-
-
 void LyXCursor::x_fix(int i)
 {
        x_fix_ = i;
@@ -104,18 +93,6 @@ int LyXCursor::y() const
 }
 
 
-void LyXCursor::iy(int i)
-{
-       iy_ = i;
-}
-
-
-int LyXCursor::iy() const
-{
-       return iy_;
-}
-
-
 bool operator==(LyXCursor const & a, LyXCursor const & b)
 {
        return a.par() == b.par()