]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_sizeinset.h
fix #1073
[lyx.git] / src / mathed / math_sizeinset.h
index 7d52d63170bebd2a541ce7b6197f66df02e1e457..70c56c364114e7e94accf95a880f888cbbdc2e19 100644 (file)
@@ -3,13 +3,13 @@
 #define MATHSIZEINSET_H
 
 #include "math_nestinset.h"
+#include "metricsinfo.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 /** An inset for \scriptsize etc
-    \author André Pönitz
+ *  \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS
 */
 
 class latexkeys;
@@ -23,9 +23,9 @@ public:
        /// we write extra braces in any case...
        bool extraBraces() const { return true; }
        ///
-       void metrics(MathMetricsInfo & st) const;
+       void metrics(MetricsInfo & st) const;
        ///
-       void draw(MathPainterInfo &, int x, int y) const;
+       void draw(PainterInfo &, int x, int y) const;
 
        ///
        void write(WriteStream & os) const;
@@ -38,7 +38,7 @@ private:
        ///
        latexkeys const * key_;
        ///
-       MathStyles const style_;
+       Styles const style_;
 };
 
 #endif