]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_binominset.C
remove symbol_def.h
[lyx.git] / src / mathed / math_binominset.C
index c9d0edd7355525526c3ddd640ed46364d3c3c387..57857776159cd0af9fa5e101b65e9cff19c38996 100644 (file)
@@ -3,7 +3,6 @@
 #endif
 
 #include "math_binominset.h"
-#include "math_parser.h"
 #include "support.h"
 #include "support/LOstream.h"
 
@@ -47,10 +46,8 @@ void MathBinomInset::draw(Painter & pain, int x, int y) const
        int m = x + width() / 2;
        xcell(0).draw(pain, m - xcell(0).width() / 2, y - xcell(0).descent() - 3 - 5);
        xcell(1).draw(pain, m - xcell(1).width() / 2, y + xcell(1).ascent()  + 3 - 5);
-       mathed_draw_deco(pain, x, y - ascent_,
-               dw(), height(), in_word_set("("));
-       mathed_draw_deco(pain, x + width() - dw(), y - ascent_, 
-               dw(), height(), in_word_set(")"));
+       mathed_draw_deco(pain, x, y - ascent_, dw(), height(), "(");
+       mathed_draw_deco(pain, x + width() - dw(), y - ascent_, dw(), height(), ")");
 }