X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathFontOld.h;h=3046d03d485d305ff30aa55cd41ef95f4de3fa2c;hb=aafd52f44167d5510be1ddcb974daa9dae486933;hp=e93f3061be70fde4f5adc49472f25794bb7846b3;hpb=f1cba8ff64b369792fd49f5ddf90e8126ab476ac;p=lyx.git diff --git a/src/mathed/InsetMathFontOld.h b/src/mathed/InsetMathFontOld.h index e93f3061be..3046d03d48 100644 --- a/src/mathed/InsetMathFontOld.h +++ b/src/mathed/InsetMathFontOld.h @@ -24,9 +24,9 @@ class latexkeys; class InsetMathFontOld : public InsetMathNest { public: /// - explicit InsetMathFontOld(latexkeys const * key); - /// we are in text mode. - mode_type currentMode() const { return TEXT_MODE; } + explicit InsetMathFontOld(Buffer * buf, latexkeys const * key); + /// we inherit the mode + mode_type currentMode() const { return current_mode_; } /// we write extra braces in any case... bool extraBraces() const { return true; } /// @@ -45,11 +45,15 @@ public: void infoize(odocstream & os) const; /// int kerning(BufferView const * bv) const { return cell(0).kerning(bv); } + /// + InsetCode lyxCode() const { return MATH_FONTOLD_CODE; } private: virtual Inset * clone() const; /// the font to be used on screen latexkeys const * key_; + /// the inherited mode + mutable mode_type current_mode_; };