X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2FInsetMathOverset.h;h=078ccf55713971c2e39fadd75624bac044caeb14;hb=7f17f13bfc2ad4e7cdd8ecfce23374e2b3d0c646;hp=4f397fdbf78216f38d88af468d86da1de558f673;hpb=e89625ef28143545a511cdabc67dee8b7be1b216;p=lyx.git diff --git a/src/mathed/InsetMathOverset.h b/src/mathed/InsetMathOverset.h index 4f397fdbf7..078ccf5571 100644 --- a/src/mathed/InsetMathOverset.h +++ b/src/mathed/InsetMathOverset.h @@ -15,17 +15,20 @@ #include "InsetMathFracBase.h" + +namespace lyx { + /// Inset for overset class InsetMathOverset : public InsetMathFracBase { public: /// - void metrics(MetricsInfo & mi, Dimension & dim) const; + bool metrics(MetricsInfo & mi, Dimension & dim) const; /// void draw(PainterInfo & pi, int x, int y) const; /// - bool idxFirst(LCursor &) const; + bool idxFirst(Cursor &) const; /// - bool idxLast(LCursor &) const; + bool idxLast(Cursor &) const; /// void write(WriteStream & os) const; /// @@ -33,7 +36,10 @@ public: /// void validate(LaTeXFeatures & features) const; private: - virtual std::auto_ptr doClone() const; + virtual std::auto_ptr doClone() const; }; + + +} // namespace lyx #endif