X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_deliminset.h;h=84a3ac14512f335c30d27bacf0c212aac351f103;hb=92d522b7f1be6046adcac062c558bbf0bf021612;hp=d662896b4e1583dedae00101ce82c63932e0be0f;hpb=99d1627a471b92f403598d03dfc861ddc3c11be0;p=lyx.git diff --git a/src/mathed/math_deliminset.h b/src/mathed/math_deliminset.h index d662896b4e..84a3ac1451 100644 --- a/src/mathed/math_deliminset.h +++ b/src/mathed/math_deliminset.h @@ -19,7 +19,7 @@ public: /// MathDelimInset(string const & left, string const & right, MathArray const &); /// - MathInset * clone() const; + InsetBase * clone() const; /// MathDelimInset * asDelimInset() { return this; } /// @@ -31,30 +31,30 @@ public: /// is it |...|? bool isAbs() const; /// - void metrics(MathMetricsInfo & st) const; + void metrics(MetricsInfo & mi, Dimension & dim) const; /// - void draw(MathPainterInfo &, int x, int y) const; + void draw(PainterInfo &, int x, int y) const; /// void write(WriteStream & os) const; /// write normalized content void normalize(NormalStream &) const; /// - void maplize(MapleStream &) const; + void maple(MapleStream &) const; /// - void maximize(MaximaStream &) const; + void maxima(MaximaStream &) const; /// - void mathematicize(MathematicaStream &) const; + void mathematica(MathematicaStream &) const; /// void mathmlize(MathMLStream &) const; /// - void octavize(OctaveStream &) const; + void octave(OctaveStream &) const; /// string left_; /// string right_; private: /// - int dw() const; + mutable int dw_; }; #endif