]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_specialcharinset.C
make \newcommand{\bb}[1]{\mathbf{#1}} work for read/write/display.
[lyx.git] / src / mathed / math_specialcharinset.C
index bfd1eaf130b089f74f0d27d189c0d5bd575db8f9..fe66cfa69b9d6f4e5fd28eccb41f16adbd6ee0c9 100644 (file)
@@ -3,8 +3,8 @@
 #endif
 
 #include "math_specialcharinset.h"
-#include "support/LOstream.h"
-#include "support.h"
+#include "math_mathmlstream.h"
+#include "math_support.h"
 
 
 MathSpecialCharInset::MathSpecialCharInset(char c)
@@ -44,19 +44,17 @@ void MathSpecialCharInset::metrics(MathMetricsInfo const & mi) const
 
 void MathSpecialCharInset::draw(Painter & pain, int x, int y) const
 { 
-       xo(x);
-       yo(y);
        drawChar(pain, LM_TC_CONST, mi_, x, y, char_);
 }
 
 
-void MathSpecialCharInset::write(MathWriteInfo & os) const
+void MathSpecialCharInset::write(WriteStream & os) const
 {
        os << "\\" << char_;
 }
 
 
-void MathSpecialCharInset::writeNormal(std::ostream & os) const
+void MathSpecialCharInset::normalize(NormalStream & os) const
 {
        os << "\\" << char_;
 }