]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_macrotemplate.C
fix compilation error
[lyx.git] / src / mathed / math_macrotemplate.C
index 7d518782d0ab8c32029740f034ddc11ab7b3d47c..22186a52ee52fff2d81898f46f026ba39f9957a9 100644 (file)
@@ -47,7 +47,7 @@ string const & MathMacroTemplate::name() const
 }
 
 
-void MathMacroTemplate::metrics(MathMetricsInfo const & mi) const
+void MathMacroTemplate::metrics(MathMetricsInfo & mi) const
 {
        xcell(0).metrics(mi);
        xcell(1).metrics(mi);
@@ -57,14 +57,16 @@ void MathMacroTemplate::metrics(MathMetricsInfo const & mi) const
 }
 
 
-void MathMacroTemplate::draw(Painter & pain, int x, int y) const
+void MathMacroTemplate::draw(MathPainterInfo & pi, int x, int y) const
 {
        int const w0 = xcell(0).width();
        int const w1 = xcell(1).width();
-       xcell(0).draw(pain, x + 2, y + 1);
-       pain.rectangle(x, y - ascent() + 1, w0 + 4, height(), LColor::blue);
-       xcell(1).draw(pain, x + 8 + w0, y + 1);
-       pain.rectangle(x + w0 + 6 , y - ascent() + 1, w1 + 4, height(), LColor::blue);
+       xcell(0).draw(pi, x + 2, y + 1);
+       pi.pain.rectangle(x, y - ascent() + 1, w0 + 4, height(),
+                       LColor::blue);
+       xcell(1).draw(pi, x + 8 + w0, y + 1);
+       pi.pain.rectangle(x + w0 + 6 , y - ascent() + 1, w1 + 4,
+                       height(), LColor::blue);
 }