]> git.lyx.org Git - features.git/blobdiff - src/mathed/math_root.C
fix lyxalgo.h, dra pagebreak with text on line, change the math_deco_search a bit
[features.git] / src / mathed / math_root.C
index 5afecc6826148f53478b2d2cb59df1fbed2cc0bc..c817dc07cac19890d471fceef8fe091d05e76e0e 100644 (file)
@@ -136,29 +136,9 @@ void MathRootInset::SetFocus(int x, int)
 
 void MathRootInset::Write(ostream & os)
 {
-#ifdef USE_OSTREAM_ONLY
        os << '\\' << name << '[';
        uroot->Write(os);  
        os << "]{";
        MathParInset::Write(os);
        os << '}';
-#else
-   string output;
-   MathRootInset::Write(output);
-   os << output;
-#endif
 }
-
-
-#ifndef USE_OSTREAM_ONLY
-void MathRootInset::Write(string & outf)
-{ 
-   outf += '\\';
-   outf += name;
-   outf += '[';
-   uroot->Write(outf);  
-   outf += "]{";
-   MathParInset::Write(outf);
-   outf += '}';
-}
-#endif