]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_pos.C
split LyXText::rowlist_ into individual Paragraph::rows_ chunks
[lyx.git] / src / mathed / math_pos.C
index 3caa88fd68ad697a3b9f9b43baae4189e37ea3e7..447e6fdf26aa8e8f12be469da5f005faeae77a1a 100644 (file)
@@ -1,4 +1,5 @@
-#include "config.h"
+#include <config.h>
+
 #include "math_pos.h"
 #include "math_inset.h"
 #include "debug.h"
@@ -7,6 +8,9 @@
 
 using namespace lyx::support;
 
+using std::endl;
+
+
 CursorPos::CursorPos()
        : inset_(0), idx_(0), pos_(0)
 {}
@@ -68,7 +72,8 @@ bool operator!=(CursorPos const & p, CursorPos const & q)
 bool operator<(CursorPos const & p, CursorPos const & q)
 {
        if (p.inset_ != q.inset_) {
-               lyxerr << "can't compare cursor and anchor in different insets\n";
+               lyxerr << "can't compare cursor and anchor in different insets"
+                      << endl;
                return true;
        }
        if (p.idx_ != q.idx_)