]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_sqrtinset.C
fix typo that put too many include paths for most people
[lyx.git] / src / mathed / math_sqrtinset.C
index f71e16f331c60c16e4d15606401e0b040e1b2ce4..ccece1e1190e8557a8f3504fda18aa6ca3fd129e 100644 (file)
@@ -15,7 +15,7 @@ MathSqrtInset::MathSqrtInset()
 
 
 MathInset * MathSqrtInset::clone() const
-{   
+{
        return new MathSqrtInset(*this);
 }
 
@@ -30,8 +30,8 @@ void MathSqrtInset::metrics(MathMetricsInfo const & mi) const
 
 
 void MathSqrtInset::draw(Painter & pain, int x, int y) const
-{ 
-       xcell(0).draw(pain, x + 10, y); 
+{
+       xcell(0).draw(pain, x + 10, y);
        int const a = ascent_;
        int const d = descent_;
        int xp[4];
@@ -44,18 +44,18 @@ void MathSqrtInset::draw(Painter & pain, int x, int y) const
 }
 
 
-void MathSqrtInset::metrics(TextMetricsInfo const & mi) const
+void MathSqrtInset::metricsT(TextMetricsInfo const & mi) const
 {
-       xcell(0).metrics(mi);
+       xcell(0).metricsT(mi);
        ascent_  = xcell(0).ascent()  + 1;
        descent_ = xcell(0).descent();
        width_   = xcell(0).width()   + 2;
 }
 
 
-void MathSqrtInset::draw(TextPainter & pain, int x, int y) const
-{ 
-       xcell(0).draw(pain, x + 2, y); 
+void MathSqrtInset::drawT(TextPainter & pain, int x, int y) const
+{
+       xcell(0).drawT(pain, x + 2, y);
        pain.horizontalLine(x + 2, y - xcell(0).ascent(), xcell(0).width(), '_');
        pain.verticalLine  (x + 1, y - xcell(0).ascent() + 1, xcell(0).height());
        pain.draw(x, y + xcell(0).descent(), '\\');