]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_fontoldinset.C
Fix.
[lyx.git] / src / mathed / math_fontoldinset.C
index aa37571a984822bc667c02cf8e65611b19919e8a..cb0e3ba4ee17cc2ff21c56bb5edc685d224aa549 100644 (file)
@@ -1,8 +1,5 @@
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include "math_fontoldinset.h"
 #include "math_mathmlstream.h"
@@ -10,6 +7,7 @@
 #include "math_support.h"
 #include "math_parser.h"
 #include "textpainter.h"
+#include "support/LOstream.h"
 #include "frontends/Painter.h"
 
 
@@ -30,7 +28,7 @@ MathInset * MathFontOldInset::clone() const
 void MathFontOldInset::metrics(MathMetricsInfo & mi) const
 {
        MathFontSetChanger dummy(mi.base, key_->name.c_str());
-       dim_ = xcell(0).metrics(mi);
+       dim_ = cell(0).metrics(mi);
        metricsMarkers();
 }
 
@@ -38,20 +36,20 @@ void MathFontOldInset::metrics(MathMetricsInfo & mi) const
 void MathFontOldInset::draw(MathPainterInfo & pi, int x, int y) const
 {
        MathFontSetChanger dummy(pi.base, key_->name.c_str());
-       xcell(0).draw(pi, x + 1, y);
+       cell(0).draw(pi, x + 1, y);
        drawMarkers(pi, x, y);
 }
 
 
 void MathFontOldInset::metricsT(TextMetricsInfo const & mi) const
 {
-       dim_ = xcell(0).metricsT(mi);
+       dim_ = cell(0).metricsT(mi);
 }
 
 
 void MathFontOldInset::drawT(TextPainter & pain, int x, int y) const
 {
-       xcell(0).drawT(pain, x, y);
+       cell(0).drawT(pain, x, y);
 }
 
 
@@ -63,7 +61,7 @@ void MathFontOldInset::write(WriteStream & os) const
 
 void MathFontOldInset::normalize(NormalStream & os) const
 {
-       os << "[font " << key_->name << " " << cell(0) << "]";
+       os << "[font " << key_->name << ' ' << cell(0) << ']';
 }