]> git.lyx.org Git - features.git/blobdiff - src/mathed/math_fontinset.C
Replace LString.h with support/std_string.h,
[features.git] / src / mathed / math_fontinset.C
index c8669f4f5013b9d5b3efdfbf86e12c62a923631c..79d25a16cb7d4ea9a6679cfd9e7fecace4a5d0a3 100644 (file)
@@ -1,14 +1,22 @@
+/**
+ * \file math_fontinset.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_fontinset.h"
 #include "math_mathmlstream.h"
-#include "math_streamstr.h"
-#include "math_support.h"
 #include "math_parser.h"
 #include "LaTeXFeatures.h"
-#include "support/LOstream.h"
-#include "textpainter.h"
+#include "support/std_ostream.h"
 
+using std::auto_ptr;
 
 
 MathFontInset::MathFontInset(latexkeys const * key)
@@ -16,9 +24,9 @@ MathFontInset::MathFontInset(latexkeys const * key)
 {}
 
 
-InsetBase * MathFontInset::clone() const
+auto_ptr<InsetBase> MathFontInset::clone() const
 {
-       return new MathFontInset(*this);
+       return auto_ptr<InsetBase>(new MathFontInset(*this));
 }
 
 
@@ -49,7 +57,7 @@ void MathFontInset::draw(PainterInfo & pi, int x, int y) const
 }
 
 
-void MathFontInset::metricsT(TextMetricsInfo const & mi, Dimension & dim) const
+void MathFontInset::metricsT(TextMetricsInfo const & mi, Dimension & /*dim*/) const
 {
        cell(0).metricsT(mi, dim_);
 }