]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_decorationinset.C
make \newcommand{\bb}[1]{\mathbf{#1}} work for read/write/display.
[lyx.git] / src / mathed / math_decorationinset.C
index 33829502e0a7e17d236408ecf9ca70019e4a70b7..b447e594b701227d4f0e7ccc8375ed23f2a93241 100644 (file)
@@ -1,11 +1,14 @@
+#include <config.h>
+
 #ifdef __GNUG__
 #pragma implementation
 #endif
 
 #include "math_decorationinset.h"
-#include "support.h"
+#include "math_support.h"
 #include "math_parser.h"
 #include "math_mathmlstream.h"
+#include "math_streamstr.h"
 
 
 MathDecorationInset::MathDecorationInset(string const & name)
@@ -91,15 +94,15 @@ void MathDecorationInset::draw(Painter & pain, int x, int y) const
 }
 
 
-void MathDecorationInset::write(MathWriteInfo & os) const
+void MathDecorationInset::write(WriteStream & os) const
 {
-       if (os.fragile && protect())
+       if (os.fragile() && protect())
                os << "\\protect";
-       os << '\\' << name_.c_str() << '{' << cell(0) << '}';
+       os << '\\' << name_ << '{' << cell(0) << '}';
 }
 
 
-void MathDecorationInset::writeNormal(NormalStream & os) const
+void MathDecorationInset::normalize(NormalStream & os) const
 {
-       os << "[deco " << name_.c_str() << ' ' <<  cell(0) << ']';
+       os << "[deco " << name_ << ' ' <<  cell(0) << ']';
 }