]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_binaryopinset.C
forward search in math insets. ugly. seems to work. don't ask why.
[lyx.git] / src / mathed / math_binaryopinset.C
index e27de8034dcd9948a20f805c835686535da19472..40fc662fbb0e1eee34a64f998969b5a722a896b6 100644 (file)
@@ -1,3 +1,5 @@
+#include <config.h>
+
 #ifdef __GNUG__
 #pragma implementation
 #endif
@@ -45,13 +47,13 @@ void MathBinaryOpInset::draw(Painter & pain, int x, int y) const
 }
 
 
-void MathBinaryOpInset::write(MathWriteInfo & os) const
+void MathBinaryOpInset::write(WriteStream & os) const
 {
        os << '{' << cell(0) << op_ << cell(1) << '}';
 }
 
 
-void MathBinaryOpInset::writeNormal(NormalStream & os) const
+void MathBinaryOpInset::normalize(NormalStream & os) const
 {
        os << "[binop " << op_ << ' ' << cell(0) << ' ' << cell(1) << ']';
 }