]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_sizeinset.C
Fix reading of math macros
[lyx.git] / src / mathed / math_sizeinset.C
index f649a88cc9a762911aaf5b38da5db1f7a503e611..a4cba68316658184d46146929e31789cc302007d 100644 (file)
@@ -27,7 +27,7 @@ MathInset * MathSizeInset::clone() const
 void MathSizeInset::metrics(MathMetricsInfo & mi) const
 {
        MathStyleChanger dummy(mi.base, style_);
-       dim_ = xcell(0).metrics(mi);
+       dim_ = cell(0).metrics(mi);
        metricsMarkers2();
 }
 
@@ -35,7 +35,7 @@ void MathSizeInset::metrics(MathMetricsInfo & mi) const
 void MathSizeInset::draw(MathPainterInfo & pi, int x, int y) const
 {
        MathStyleChanger dummy(pi.base, style_);
-       xcell(0).draw(pi, x + 1, y);
+       cell(0).draw(pi, x + 1, y);
        drawMarkers2(pi, x, y);
 }
 
@@ -48,7 +48,7 @@ void MathSizeInset::write(WriteStream & os) const
 
 void MathSizeInset::normalize(NormalStream & os) const
 {
-       os << "[" << key_->name << ' ' << cell(0) << ']';
+       os << '[' << key_->name << ' ' << cell(0) << ']';
 }