]> git.lyx.org Git - features.git/blobdiff - src/mathed/math_binominset.C
some support for matrix operations with maple ('M-x math-extern maple evalm')
[features.git] / src / mathed / math_binominset.C
index 58b1acafa22bfcdd76c9b733cb3615bee8d688e6..342492c8ab470c79e8a06db94f037280960f4b4b 100644 (file)
@@ -51,17 +51,13 @@ void MathBinomInset::draw(Painter & pain, int x, int y) const
 }
 
 
-void MathBinomInset::write(MathWriteInfo & os) const
+void MathBinomInset::write(WriteStream & os) const
 {
        os << '{' << cell(0) << " \\choose " << cell(1) << '}';
 }
 
 
-void MathBinomInset::writeNormal(NormalStream & os) const
+void MathBinomInset::normalize(NormalStream & os) const
 {
-       os << "[binom ";
-       cell(0).writeNormal(os);
-       os << " ";
-       cell(1).writeNormal(os);
-       os << "] ";
+       os << "[binom " << cell(0) << ' ' << cell(1) << ']';
 }