]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_spaceinset.C
fix #1073
[lyx.git] / src / mathed / math_spaceinset.C
index 168234db7d790f7d3b802a2b8e5b38b04a755555..101553962ddc1d857e9a5646fe2f4f600523c5a5 100644 (file)
@@ -38,7 +38,7 @@ MathInset * MathSpaceInset::clone() const
 }
 
 
-void MathSpaceInset::metrics(MathMetricsInfo &) const
+void MathSpaceInset::metrics(MetricsInfo &) const
 {
        switch (space_) {
                case 0: dim_.w = 6; break;
@@ -58,7 +58,7 @@ void MathSpaceInset::metrics(MathMetricsInfo &) const
 }
 
 
-void MathSpaceInset::draw(MathPainterInfo & pi, int x, int y) const
+void MathSpaceInset::draw(PainterInfo & pi, int x, int y) const
 {
 
 // Sadly, HP-UX CC can't handle that kind of initialization.
@@ -83,6 +83,7 @@ void MathSpaceInset::incSpace()
        space_ = (space_ + 1) % (nSpace - 2);
 }
 
+
 void MathSpaceInset::validate(LaTeXFeatures & features) const
 {
        if (space_ >= 0 && space_< nSpace) {