]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_sqrtinset.C
fix #1073
[lyx.git] / src / mathed / math_sqrtinset.C
index 960ccc2ab6afb246847885ddcbb1249d07c8d5ed..93f08762ebaf247ef28d00e8bd451447ebd0f27d 100644 (file)
@@ -17,7 +17,7 @@ MathInset * MathSqrtInset::clone() const
 }
 
 
-void MathSqrtInset::metrics(MathMetricsInfo & mi) const
+void MathSqrtInset::metrics(MetricsInfo & mi) const
 {
        cell(0).metrics(mi);
        dim_.a = cell(0).ascent()  + 4;
@@ -27,7 +27,7 @@ void MathSqrtInset::metrics(MathMetricsInfo & mi) const
 }
 
 
-void MathSqrtInset::draw(MathPainterInfo & pi, int x, int y) const
+void MathSqrtInset::draw(PainterInfo & pi, int x, int y) const
 {
        cell(0).draw(pi, x + 10, y);
        int const a = ascent();