X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathOverset.cpp;h=7cf16f20e763002bdaac7822b77a7522a70cd694;hb=d0d7d0103aed0b300807be54224ba7cd324c1ff5;hp=1c7b2fd7fb5a658d30946ec573f551a7e4628cd2;hpb=00e305c9d9bd8b0ff54b6c58adb6192d5934ed60;p=lyx.git diff --git a/src/mathed/InsetMathOverset.cpp b/src/mathed/InsetMathOverset.cpp index 1c7b2fd7fb..7cf16f20e7 100644 --- a/src/mathed/InsetMathOverset.cpp +++ b/src/mathed/InsetMathOverset.cpp @@ -11,10 +11,10 @@ #include #include "InsetMathOverset.h" -#include "MathArray.h" +#include "MathData.h" #include "MathStream.h" -#include "LCursor.h" +#include "Cursor.h" #include "LaTeXFeatures.h" @@ -24,9 +24,9 @@ using std::max; using std::auto_ptr; -auto_ptr InsetMathOverset::doClone() const +auto_ptr InsetMathOverset::doClone() const { - return auto_ptr(new InsetMathOverset(*this)); + return auto_ptr(new InsetMathOverset(*this)); } @@ -57,7 +57,7 @@ void InsetMathOverset::draw(PainterInfo & pi, int x, int y) const } -bool InsetMathOverset::idxFirst(LCursor & cur) const +bool InsetMathOverset::idxFirst(Cursor & cur) const { cur.idx() = 1; cur.pos() = 0; @@ -65,7 +65,7 @@ bool InsetMathOverset::idxFirst(LCursor & cur) const } -bool InsetMathOverset::idxLast(LCursor & cur) const +bool InsetMathOverset::idxLast(Cursor & cur) const { cur.idx() = 1; cur.pos() = cur.lastpos();