]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_diminset.h
tfracinset files is missing so all usage of tfrac is commented out
[lyx.git] / src / mathed / math_diminset.h
index 2131e5d7405f635c8a753947e223691e2881d4c4..3294e8f12e83cfddd4d3cc3a7bcb6a02fcaa9ff8 100644 (file)
@@ -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