]> git.lyx.org Git - lyx.git/blobdiff - src/cursor_slice.C
hopefully fix tex2lyx linking.
[lyx.git] / src / cursor_slice.C
index eda679a2e95750fa10c79da8517003c57dd63ba3..02e7b4ab6270d82dbd3b3b8976c68a2ac8668b29 100644 (file)
 #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 <boost/assert.hpp>
 
+
+namespace lyx {
+
 using std::endl;
 
 
@@ -40,7 +43,7 @@ CursorSlice::CursorSlice(InsetBase & p)
 
 MathArray & CursorSlice::cell() const
 {
-       return inset_->asMathInset()->cell(idx_);
+       return inset_->asInsetMath()->cell(idx_);
 }
 
 
@@ -56,30 +59,30 @@ Paragraph const & CursorSlice::paragraph() const
 }
 
 
-CursorSlice::pos_type CursorSlice::lastpos() const
+pos_type CursorSlice::lastpos() const
 {
        BOOST_ASSERT(inset_);
-       return inset_->asMathInset() ? cell().size() : paragraph().size();
+       return inset_->asInsetMath() ? cell().size() : paragraph().size();
 }
 
 
 CursorSlice::row_type CursorSlice::row() const
 {
-       BOOST_ASSERT(asMathInset());
-       return asMathInset()->row(idx_);
+       BOOST_ASSERT(asInsetMath());
+       return asInsetMath()->row(idx_);
 }
 
 
 CursorSlice::col_type CursorSlice::col() const
 {
-       BOOST_ASSERT(asMathInset());
-       return asMathInset()->col(idx_);
+       BOOST_ASSERT(asInsetMath());
+       return asInsetMath()->col(idx_);
 }
 
 
 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