]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetfoot.C
(Herbert): strip the extension from the graphics filename when exporting
[lyx.git] / src / insets / insetfoot.C
index 35e441c2793627084387fff3502b78431c52d5d7..cf1576383bd8d020e090045980130f04f68d3743 100644 (file)
@@ -65,3 +65,13 @@ int InsetFoot::latex(Buffer const * buf,
 
        return i + 2;
 }
+
+
+int InsetFoot::docbook(Buffer const * buf, ostream & os) const
+{
+       os << "<footnote>";
+       int const i = inset.docbook(buf, os);
+       os << "</footnote>";
+
+       return i;
+}