]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_envinset.C
Jean-Marc's fix for wrong descent
[lyx.git] / src / mathed / math_envinset.C
index 47936fb277b5f716104c79a701f1475fafc5db27..c4a6ef71028ffdfde466912590ea0155fbede7c2 100644 (file)
@@ -1,12 +1,10 @@
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include "math_envinset.h"
 #include "math_mathmlstream.h"
 #include "math_streamstr.h"
+#include "support/LOstream.h"
 
 
 MathEnvInset::MathEnvInset(string const & name)
@@ -22,16 +20,14 @@ MathInset * MathEnvInset::clone() const
 
 void MathEnvInset::metrics(MathMetricsInfo & mi) const
 {
-       xcell(0).metrics(mi);
-       ascent_  = xcell(0).ascent() + 1;
-       descent_ = xcell(0).descent() + 1;
-       width_   = xcell(0).width() + 2;
+       dim_ = cell(0).metrics(mi);
+       metricsMarkers2();
 }
 
 
 void MathEnvInset::draw(MathPainterInfo & pi, int x, int y) const
 {
-       xcell(0).draw(pi, x + 1, y);
+       cell(0).draw(pi, x + 1, y);
        drawMarkers2(pi, x, y);
 }
 
@@ -44,7 +40,7 @@ void MathEnvInset::write(WriteStream & os) const
 
 void MathEnvInset::normalize(NormalStream & os) const
 {
-       os << "[env " << name_ << " " << cell(0) << ']';
+       os << "[env " << name_ << ' ' << cell(0) << ']';
 }