X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_deliminset.h;h=84a3ac14512f335c30d27bacf0c212aac351f103;hb=92d522b7f1be6046adcac062c558bbf0bf021612;hp=8c1feef1ed299638eefc9b7dd8e86deed81b39fd;hpb=c9e78a825bd659ddb7b4b55a6adfa7f0a1a98dd6;p=lyx.git diff --git a/src/mathed/math_deliminset.h b/src/mathed/math_deliminset.h index 8c1feef1ed..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,9 +31,9 @@ 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; @@ -55,6 +55,6 @@ public: string right_; private: /// - int dw() const; + mutable int dw_; }; #endif