X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fmathed%2Fmath_diffinset.C;h=d81bbd8c0d6484299d1ea2f278f4c0f8594b9d96;hb=7338f3b980d4dc5793ff80be814b7a74e1c72274;hp=de162b5b6ef33cfe3e845ba11088187430a25705;hpb=1829cdef6a34ec623c25ec8967dc048e8f19eee9;p=lyx.git diff --git a/src/mathed/math_diffinset.C b/src/mathed/math_diffinset.C index de162b5b6e..d81bbd8c0d 100644 --- a/src/mathed/math_diffinset.C +++ b/src/mathed/math_diffinset.C @@ -1,3 +1,14 @@ +/** + * \file math_diffinset.C + * This file is part of LyX, the document processor. + * Licence details can be found in the file COPYING. + * + * \author André Pönitz + * + * Full author contact details are available in file CREDITS. + */ + +#include #include "math_diffinset.h" #include "math_support.h" @@ -5,15 +16,18 @@ #include "math_symbolinset.h" #include "debug.h" +using std::auto_ptr; +using std::endl; + MathDiffInset::MathDiffInset() : MathNestInset(1) {} -MathInset * MathDiffInset::clone() const +auto_ptr MathDiffInset::clone() const { - return new MathDiffInset(*this); + return auto_ptr(new MathDiffInset(*this)); } @@ -32,15 +46,15 @@ void MathDiffInset::normalize(NormalStream & os) const } -void MathDiffInset::metrics(MetricsInfo &) const +void MathDiffInset::metrics(MetricsInfo &, Dimension &) const { - lyxerr << "should not happen\n"; + lyxerr << "should not happen" << endl; } void MathDiffInset::draw(PainterInfo &, int, int) const { - lyxerr << "should not happen\n"; + lyxerr << "should not happen" << endl; } @@ -82,5 +96,5 @@ void MathDiffInset::mathmlize(MathMLStream & os) const void MathDiffInset::write(WriteStream &) const { - lyxerr << "should not happen\n"; + lyxerr << "should not happen" << endl; }