X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathMBox.cpp;h=1b009cf3e872361f0056eec1981c50f8d2cc979b;hb=fc6ce7cd08562fd7bab4427880b46390bb7d2f07;hp=adb16c5498154db6e8c31b824105802095875f10;hpb=6e3a75969b97a5db4c80c46be49d4deb122abfe7;p=lyx.git diff --git a/src/mathed/InsetMathMBox.cpp b/src/mathed/InsetMathMBox.cpp index adb16c5498..1b009cf3e8 100644 --- a/src/mathed/InsetMathMBox.cpp +++ b/src/mathed/InsetMathMBox.cpp @@ -11,19 +11,19 @@ #include #include "InsetMathMBox.h" -#include "MathArray.h" +#include "MathData.h" #include "MathStream.h" #include "BufferView.h" -#include "buffer.h" -#include "bufferparams.h" -#include "cursor.h" +#include "Buffer.h" +#include "BufferParams.h" +#include "Cursor.h" #include "debug.h" -#include "metricsinfo.h" +#include "MetricsInfo.h" #include "output_latex.h" -#include "outputparams.h" -#include "paragraph.h" -#include "texrow.h" +#include "OutputParams.h" +#include "Paragraph.h" +#include "TexRow.h" #include "TextMetrics.h" namespace lyx { @@ -49,9 +49,9 @@ InsetMathMBox::InsetMathMBox(LyXLayout_ptr const & layout) } -auto_ptr InsetMathMBox::doClone() const +auto_ptr InsetMathMBox::doClone() const { - return auto_ptr(new InsetMathMBox(*this)); + return auto_ptr(new InsetMathMBox(*this)); } @@ -104,7 +104,7 @@ int InsetMathMBox::latex(Buffer const & buf, odocstream & os, } -void InsetMathMBox::doDispatch(LCursor & cur, FuncRequest & cmd) +void InsetMathMBox::doDispatch(Cursor & cur, FuncRequest & cmd) { text_.dispatch(cur, cmd); }