]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_casesinset.C
get rid of broken_header.h and some unneeded tests
[lyx.git] / src / mathed / math_casesinset.C
index 2a57697bd5e1273e774754e1438733b2202f2fa5..fc1b3316282e2503228fbf399d5b13d7f7aa4522 100644 (file)
@@ -25,7 +25,7 @@ MathCasesInset::MathCasesInset(row_type n)
 {}
 
 
-auto_ptr<InsetBase> MathCasesInset::clone() const
+auto_ptr<InsetBase> MathCasesInset::doClone() const
 {
        return auto_ptr<InsetBase>(new MathCasesInset(*this));
 }
@@ -39,10 +39,11 @@ void MathCasesInset::metrics(MetricsInfo & mi, Dimension & dim) const
 }
 
 
-void MathCasesInset::draw(PainterInfo & pain, int x, int y) const
+void MathCasesInset::draw(PainterInfo & pi, int x, int y) const
 {
-       mathed_draw_deco(pain, x + 1, y - dim_.ascent(), 6, dim_.height(), "{");
-       MathGridInset::draw(pain, x + 8, y);
+       mathed_draw_deco(pi, x + 1, y - dim_.ascent(), 6, dim_.height(), "{");
+       MathGridInset::draw(pi, x + 8, y);
+       setPosCache(pi, x, y);
 }