]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathLim.h
Change the interface to a paragraph's layout. We still store a LayoutPtr, but now...
[lyx.git] / src / mathed / InsetMathLim.h
index 631cbfe2e80f587c70b1895639c825ac6d2d7f00..ce52638ed8f55c34677d783b3f4d55e34fe2899c 100644 (file)
@@ -24,7 +24,7 @@ namespace lyx {
 class InsetMathLim : public InsetMathNest {
 public:
        ///
-       InsetMathLim(MathArray const & f, MathArray const & x, MathArray const & x0);
+       InsetMathLim(MathData const & f, MathData const & x, MathData const & x0);
        ///
        void metrics(MetricsInfo & mi, Dimension & dim) const;
        ///
@@ -39,11 +39,11 @@ public:
        ///
        void mathematica(MathematicaStream &) const;
        ///
-       void mathmlize(MathMLStream &) const;
+       void mathmlize(MathStream &) const;
        ///
        void write(WriteStream & os) const;
 private:
-       virtual std::auto_ptr<InsetBase> doClone() const;
+       virtual Inset * clone() const;
 };