]> git.lyx.org Git - features.git/blobdiff - src/insets/insetlatexaccent.C
fix lyxalgo.h, dra pagebreak with text on line, change the math_deco_search a bit
[features.git] / src / insets / insetlatexaccent.C
index b98fd082c3db1debda12ce466f77687cfc5a87fc..94d6d6532119a3ebba8826e6bf7d1865a98bd73a 100644 (file)
@@ -752,29 +752,6 @@ int InsetLatexAccent::Latex(ostream & os, signed char /*fragile*/, bool/*fs*/) c
 }
 
 
-#ifndef USE_OSTREAM_ONLY
-int InsetLatexAccent::Latex(string & file, signed char /*fragile*/, bool /*fs*/) const
-{
-       file += contents;
-       return 0;
-}
-
-
-int InsetLatexAccent::Linuxdoc(string & file) const
-{
-       file += contents;
-       return 0;
-}
-
-
-int InsetLatexAccent::DocBook(string & file) const
-{
-       file += contents;
-       return 0;
-}
-
-#else
-
 int InsetLatexAccent::Linuxdoc(ostream & os) const
 {
        os << contents;
@@ -787,7 +764,6 @@ int InsetLatexAccent::DocBook(ostream & os) const
        os << contents;
        return 0;
 }
-#endif
 
 
 bool InsetLatexAccent::Deletable() const