X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathSize.h;h=0795a2f126ea134a3a3d0d666937ea0129acc453;hb=1007714d2ec380d935d59092013ea88373bfb1df;hp=280c9f039cf873e1c9528671f9c1834d613ffeca;hpb=e89625ef28143545a511cdabc67dee8b7be1b216;p=lyx.git diff --git a/src/mathed/InsetMathSize.h b/src/mathed/InsetMathSize.h index 280c9f039c..0795a2f126 100644 --- a/src/mathed/InsetMathSize.h +++ b/src/mathed/InsetMathSize.h @@ -13,7 +13,10 @@ #define MATHSIZEINSET_H #include "InsetMathNest.h" -#include "metricsinfo.h" +#include "MetricsInfo.h" + + +namespace lyx { class latexkeys; @@ -26,7 +29,7 @@ public: /// we write extra braces in any case... bool extraBraces() const { return true; } /// - void metrics(MetricsInfo & mi, Dimension & dim) const; + bool metrics(MetricsInfo & mi, Dimension & dim) const; /// void draw(PainterInfo &, int x, int y) const; @@ -35,13 +38,16 @@ public: /// void normalize(NormalStream &) const; /// - void infoize(std::ostream & os) const; + void infoize(odocstream & os) const; private: - virtual std::auto_ptr doClone() const; + virtual std::auto_ptr doClone() const; /// latexkeys const * key_; /// Styles const style_; }; + + +} // namespace lyx #endif