X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_diminset.h;h=3294e8f12e83cfddd4d3cc3a7bcb6a02fcaa9ff8;hb=3e93baac3cd18e27db3eb2a1fcaf90b25e0918a6;hp=2131e5d7405f635c8a753947e223691e2881d4c4;hpb=99aacdad5ce32c5905149d800405ff48ffb3a3d6;p=lyx.git diff --git a/src/mathed/math_diminset.h b/src/mathed/math_diminset.h index 2131e5d740..3294e8f12e 100644 --- a/src/mathed/math_diminset.h +++ b/src/mathed/math_diminset.h @@ -21,6 +21,9 @@ class PainterInfo; /// things that need the dimension cache class MathDimInset : public MathInset { public: + /// + MathDimInset(); + /// Dimension dimensions() const { return dim_; } /// @@ -30,19 +33,12 @@ public: /// int width() const; - /// - int xo() const { return xo_; } - /// - int yo() const { return yo_; } /// void setPosCache(PainterInfo const & pi, int x, int y) const; protected: /// mutable Dimension dim_; - /// - mutable int xo_; - /// - mutable int yo_; }; + #endif