]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_fontoldinset.C
fix #1073
[lyx.git] / src / mathed / math_fontoldinset.C
index c8f67c69cf44e3e7f24b536d9fa77c85ce8ac197..11bf5f153c96a0e944f09c263cc30f7517747f35 100644 (file)
@@ -1,8 +1,5 @@
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include "math_fontoldinset.h"
 #include "math_mathmlstream.h"
@@ -28,17 +25,17 @@ MathInset * MathFontOldInset::clone() const
 }
 
 
-void MathFontOldInset::metrics(MathMetricsInfo & mi) const
+void MathFontOldInset::metrics(MetricsInfo & mi) const
 {
-       MathFontSetChanger dummy(mi.base, key_->name.c_str());
+       FontSetChanger dummy(mi.base, key_->name.c_str());
        dim_ = cell(0).metrics(mi);
        metricsMarkers();
 }
 
 
-void MathFontOldInset::draw(MathPainterInfo & pi, int x, int y) const
+void MathFontOldInset::draw(PainterInfo & pi, int x, int y) const
 {
-       MathFontSetChanger dummy(pi.base, key_->name.c_str());
+       FontSetChanger dummy(pi.base, key_->name.c_str());
        cell(0).draw(pi, x + 1, y);
        drawMarkers(pi, x, y);
 }