]> 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 4655fd6d8d6ee00486033b843d293710e3ae5c9b..fc1b3316282e2503228fbf399d5b13d7f7aa4522 100644 (file)
 #include <config.h>
 
 #include "math_casesinset.h"
-#include "math_parser.h"
+#include "math_data.h"
 #include "math_mathmlstream.h"
 #include "math_support.h"
 #include "LaTeXFeatures.h"
-#include "support/LOstream.h"
+#include "support/std_ostream.h"
 
 using std::auto_ptr;
 
@@ -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);
 }