]> git.lyx.org Git - features.git/blobdiff - src/insets/insetfoot.C
several changes and some new insets, read the Changelog
[features.git] / src / insets / insetfoot.C
index 41496c6dd51f3ab02fe39b95e413e957ce5659b0..9b33e6f08b25a1559e1836a9642c39f27f867fe6 100644 (file)
@@ -37,6 +37,13 @@ InsetFoot::InsetFoot() : InsetCollapsable()
 }
 
 
+void InsetFoot::Write(Buffer const * buf, ostream & os) const 
+{
+       os << getInsetName() << "\n";
+       InsetCollapsable::Write(buf, os);
+}
+
+
 Inset * InsetFoot::Clone() const
 {
     InsetFoot * result = new InsetFoot;
@@ -55,10 +62,10 @@ char const * InsetFoot::EditMessage() const
 
 int InsetFoot::Latex(Buffer const * buf, ostream & os, bool fragile, bool fp) const
 {
-    os << "\\footnote{%" << endl;
+    os << "\\footnote{%\n";
     
     int i = InsetText::Latex(buf, os, fragile, fp);
-    os << "}%" << endl;
+    os << "}%\n";
     
     return i + 2;
 }