X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMath.h;h=87cf74ef950639b8dfcb5500eaa3b6f823bbfba1;hb=fc6ce7cd08562fd7bab4427880b46390bb7d2f07;hp=aeaebb9d9a812d2c3227902d91405acbdbafc707;hpb=31059d1741933d95403e7f07ed033cae482f778b;p=lyx.git diff --git a/src/mathed/InsetMath.h b/src/mathed/InsetMath.h index aeaebb9d9a..87cf74ef95 100644 --- a/src/mathed/InsetMath.h +++ b/src/mathed/InsetMath.h @@ -15,7 +15,7 @@ #include "MathData.h" -#include "insets/InsetBase.h" +#include "insets/Inset.h" namespace lyx { @@ -70,7 +70,7 @@ class InsetMathSpace; class InsetMathSymbol; class InsetMathUnknown; -class RefInset; +class InsetMathRef; class NormalStream; class OctaveStream; @@ -90,7 +90,7 @@ class TextMetricsInfo; class ReplaceData; -class InsetMath : public InsetBase { +class InsetMath : public Inset { public: /// identification as math inset InsetMath * asInsetMath() { return this; } @@ -142,7 +142,7 @@ public: virtual InsetMathSymbol const * asSymbolInset() const { return 0; } virtual InsetMathUnknown * asUnknownInset() { return 0; } virtual InsetMathUnknown const * asUnknownInset() const { return 0; } - virtual RefInset * asRefInset() { return 0; } + virtual InsetMathRef * asRefInset() { return 0; } /// identifies things that can get scripts virtual bool isScriptable() const { return false; }