]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_fontoldinset.C
Compile fix gcc 2.95 + stlport
[lyx.git] / src / mathed / math_fontoldinset.C
index 8c603178c846fa3166292c9f1e546636668486f9..6b2a27174be1f5a2fe937986f92472e7d68839cd 100644 (file)
@@ -1,14 +1,21 @@
-#include <config.h>
+/**
+ * \file math_fontoldinset.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_fontoldinset.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
-#include "math_streamstr.h"
-#include "math_support.h"
 #include "math_parser.h"
-#include "textpainter.h"
-#include "support/LOstream.h"
-#include "frontends/Painter.h"
+#include "math_streamstr.h"
+#include "support/std_ostream.h"
 
 using std::auto_ptr;
 
@@ -29,9 +36,9 @@ auto_ptr<InsetBase> MathFontOldInset::clone() const
 void MathFontOldInset::metrics(MetricsInfo & mi, Dimension & dim) const
 {
        FontSetChanger dummy(mi.base, key_->name.c_str());
-       cell(0).metrics(mi, dim_);
-       metricsMarkers(1);
-       dim = dim_;
+       cell(0).metrics(mi, dim);
+       metricsMarkers(dim);
+       dim_ = dim;
 }