X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FCursorSlice.cpp;h=105df9685b5f68267bb239b14c6214da4339496a;hb=a4d9315bc49445e4419b3b59fd238a13c5f7be31;hp=20a163449f8d687fd98a8a5d314fb0fcd176d53f;hpb=65db7b31ad31024d1fe3235886e8740c772fa254;p=lyx.git diff --git a/src/CursorSlice.cpp b/src/CursorSlice.cpp index 20a163449f..105df9685b 100644 --- a/src/CursorSlice.cpp +++ b/src/CursorSlice.cpp @@ -17,14 +17,14 @@ #include "Text.h" #include "Paragraph.h" +#include "ParagraphList.h" #include "support/debug.h" #include "mathed/InsetMath.h" #include "mathed/InsetMathMacro.h" +#include "mathed/MathData.h" -#include "support/ExceptionMessage.h" -#include "support/gettext.h" #include "support/lassert.h" #include @@ -76,14 +76,14 @@ pit_type CursorSlice::lastpit() const } -CursorSlice::row_type CursorSlice::row() const +row_type CursorSlice::row() const { LASSERT(inset_, return 0); return inset_->row(idx_); } -CursorSlice::col_type CursorSlice::col() const +col_type CursorSlice::col() const { LASSERT(inset_, return 0); return inset_->col(idx_);