X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fcursor_slice.C;h=02e7b4ab6270d82dbd3b3b8976c68a2ac8668b29;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=7425bf5f84e4d9d190c3d49420efd4927b146c2d;hpb=2805c297349d82c62f3b0d9c2dcc45611e748f53;p=lyx.git diff --git a/src/cursor_slice.C b/src/cursor_slice.C index 7425bf5f84..02e7b4ab62 100644 --- a/src/cursor_slice.C +++ b/src/cursor_slice.C @@ -18,11 +18,14 @@ #include "lyxtext.h" #include "paragraph.h" -#include "mathed/math_inset.h" -#include "mathed/math_data.h" +#include "mathed/InsetMath.h" +#include "mathed/MathData.h" #include + +namespace lyx { + using std::endl; @@ -56,7 +59,7 @@ Paragraph const & CursorSlice::paragraph() const } -CursorSlice::pos_type CursorSlice::lastpos() const +pos_type CursorSlice::lastpos() const { BOOST_ASSERT(inset_); return inset_->asInsetMath() ? cell().size() : paragraph().size(); @@ -79,7 +82,7 @@ CursorSlice::col_type CursorSlice::col() const bool operator==(CursorSlice const & p, CursorSlice const & q) { - return &p.inset() == &q.inset() + return p.inset_ == q.inset_ && p.idx() == q.idx() && p.pit() == q.pit() && p.pos() == q.pos(); @@ -88,7 +91,7 @@ bool operator==(CursorSlice const & p, CursorSlice const & q) bool operator!=(CursorSlice const & p, CursorSlice const & q) { - return &p.inset() != &q.inset() + return p.inset_ != q.inset_ || p.idx() != q.idx() || p.pit() != q.pit() || p.pos() != q.pos(); @@ -134,3 +137,6 @@ std::ostream & operator<<(std::ostream & os, CursorSlice const & item) // << " y: " << item.inset().y() ; } + + +} // namespace lyx