]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_binaryopinset.C
fix #1073
[lyx.git] / src / mathed / math_binaryopinset.C
index b38add432d2485612f486f4f1f85f4df9b45bbb1..20966ce96e4f9d02af9ed8d97509ce448ed32000 100644 (file)
@@ -2,7 +2,7 @@
 
 
 #include "math_binaryopinset.h"
-#include "MathPainterInfo.h"
+#include "PainterInfo.h"
 #include "support/LOstream.h"
 #include "math_support.h"
 #include "math_mathmlstream.h"
@@ -28,7 +28,7 @@ int MathBinaryOpInset::opwidth() const
 }
 
 
-void MathBinaryOpInset::metrics(MathMetricsInfo & mi) const
+void MathBinaryOpInset::metrics(MetricsInfo & mi) const
 {
        mi_ = mi;
        cell(0).metrics(mi);
@@ -39,7 +39,7 @@ void MathBinaryOpInset::metrics(MathMetricsInfo & mi) const
 }
 
 
-void MathBinaryOpInset::draw(MathPainterInfo & pain, int x, int y) const
+void MathBinaryOpInset::draw(PainterInfo & pain, int x, int y) const
 {
        cell(0).draw(pain, x, y);
        drawChar(pain, LM_TC_CONST, mi_, x + cell(0).width() , y, op_);