]> 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 08762d17b7b61b2083957d85974bcc608d416868..b447e594b701227d4f0e7ccc8375ed23f2a93241 100644 (file)
@@ -1,3 +1,5 @@
+#include <config.h>
+
 #ifdef __GNUG__
 #pragma implementation
 #endif
@@ -6,6 +8,7 @@
 #include "math_support.h"
 #include "math_parser.h"
 #include "math_mathmlstream.h"
+#include "math_streamstr.h"
 
 
 MathDecorationInset::MathDecorationInset(string const & name)
@@ -93,13 +96,13 @@ void MathDecorationInset::draw(Painter & pain, int x, int y) 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::normalize(NormalStream & os) const
 {
-       os << "[deco " << name_.c_str() << ' ' <<  cell(0) << ']';
+       os << "[deco " << name_ << ' ' <<  cell(0) << ']';
 }