]> git.lyx.org Git - lyx.git/blobdiff - src/lyxcursor.C
Lars says _(_(b)) is a bug ... fix
[lyx.git] / src / lyxcursor.C
index 47489a0fddea40b4c763a51bca35ab398dea20fd..b653075525477e25ca1cbc26bdffa5af3519df18 100644 (file)
@@ -1,12 +1,10 @@
-/* This file is part of
- * ======================================================
+/**
+ * \file lyxcursor.C
+ * Copyright 1995-2001 the LyX Team
+ * Read the file COPYING
  *
- *           LyX, The Document Processor
- *
- *           Copyright 1995 Matthias Ettrich
- *           Copyright 1995-2001 The LyX Team.
- *
- * ====================================================== */
+ * \author Matthias Ettrich
+ */
 
 #include <config.h>
 
@@ -127,3 +125,15 @@ Row * LyXCursor::row() const
 {
        return row_;
 }
+
+
+void LyXCursor::irow(Row * r)
+{
+       irow_ = r;
+}
+
+
+Row * LyXCursor::irow() const
+{
+       return irow_;
+}