]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_diffinset.C
several small fixes for mathed
[lyx.git] / src / mathed / math_diffinset.C
index c6bfc89990752225b67c5a0515b008a67504bcca..3d32081793a735a3b3a6936d4138a08ac3b38d9b 100644 (file)
@@ -1,19 +1,32 @@
+/**
+ * \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 <config.h>
 
 #include "math_diffinset.h"
-#include "math_support.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
-#include "math_symbolinset.h"
 #include "debug.h"
 
+using std::auto_ptr;
+using std::endl;
+
 
 MathDiffInset::MathDiffInset()
        : MathNestInset(1)
 {}
 
 
-MathInset * MathDiffInset::clone() const
+auto_ptr<InsetBase> MathDiffInset::clone() const
 {
-       return new MathDiffInset(*this);
+       return auto_ptr<InsetBase>(new MathDiffInset(*this));
 }
 
 
@@ -32,19 +45,19 @@ void MathDiffInset::normalize(NormalStream & os) const
 }
 
 
-void MathDiffInset::metrics(MathMetricsInfo &) const
+void MathDiffInset::metrics(MetricsInfo &, Dimension &) const
 {
-       lyxerr << "should not happen\n";
+       lyxerr << "should not happen" << endl;
 }
 
 
-void MathDiffInset::draw(MathPainterInfo &, int, int) const
+void MathDiffInset::draw(PainterInfo &, int, int) const
 {
-       lyxerr << "should not happen\n";
+       lyxerr << "should not happen" << endl;
 }
 
 
-void MathDiffInset::maplize(MapleStream & os) const
+void MathDiffInset::maple(MapleStream & os) const
 {
        os << "diff(";
        for (idx_type idx = 0; idx < nargs(); ++idx) {
@@ -56,7 +69,7 @@ void MathDiffInset::maplize(MapleStream & os) const
 }
 
 
-void MathDiffInset::mathematicize(MathematicaStream & os) const
+void MathDiffInset::mathematica(MathematicaStream & os) const
 {
        os << "Dt[";
        for (idx_type idx = 0; idx < nargs(); ++idx) {
@@ -82,5 +95,5 @@ void MathDiffInset::mathmlize(MathMLStream & os) const
 
 void MathDiffInset::write(WriteStream &) const
 {
-       lyxerr << "should not happen\n";
+       lyxerr << "should not happen" << endl;
 }