]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathMatrix.cpp
* dynamic macros as described in http://1stein.org/download/dynmacro.pdf
[lyx.git] / src / mathed / InsetMathMatrix.cpp
index ef1ac7d8dcf8b3fa06a138ea92fa7f6fd4434d27..778595b5f53177e00d2b7f83eb5d7c766630ebc4 100644 (file)
 
 namespace lyx {
 
-using std::auto_ptr;
-
-
 InsetMathMatrix::InsetMathMatrix(InsetMathGrid const & p)
        : InsetMathGrid(p)
 {}
 
 
-auto_ptr<Inset> InsetMathMatrix::doClone() const
+Inset * InsetMathMatrix::clone() const
 {
-       return auto_ptr<Inset>(new InsetMathMatrix(*this));
+       return new InsetMathMatrix(*this);
 }