]> git.lyx.org Git - lyx.git/blobdiff - src/lyxcursor.C
fix typo that put too many include paths for most people
[lyx.git] / src / lyxcursor.C
index fc45d0a0b307602b20da5c144f113d6fba74f41f..76e43f76bad945de84b5c6b8206afbddcc638f63 100644 (file)
@@ -1,8 +1,8 @@
 /* This file is part of
- * ====================================================== 
- * 
+ * ======================================================
+ *
  *           LyX, The Document Processor
- *      
+ *
  *           Copyright 1995 Matthias Ettrich
  *           Copyright 1995-2001 The LyX Team.
  *
@@ -23,7 +23,7 @@ LyXCursor::LyXCursor()
 {}
 
 
-void LyXCursor::par(Paragraph * p) 
+void LyXCursor::par(Paragraph * p)
 {
        par_ = p;
 }
@@ -35,19 +35,19 @@ Paragraph * LyXCursor::par() const
 }
 
 
-void LyXCursor::pos(pos_type p)
+void LyXCursor::pos(lyx::pos_type p)
 {
        pos_ = p;
 }
 
 
-LyXCursor::pos_type LyXCursor::pos() const
+lyx::pos_type LyXCursor::pos() const
 {
        return pos_;
 }
 
 
-void LyXCursor::boundary(bool b) 
+void LyXCursor::boundary(bool b)
 {
        boundary_ = b;
 }