]> git.lyx.org Git - lyx.git/blobdiff - src/insets/Inset.cpp
Improve handling of top and bottom margin
[lyx.git] / src / insets / Inset.cpp
index 904ac81686c2708bf4f088a39291e86e0e0dcf71..b561533998ede6e1dbfe86249d35abc77ec78f12 100644 (file)
@@ -29,6 +29,7 @@
 #include "FuncStatus.h"
 #include "MetricsInfo.h"
 #include "output_xhtml.h"
+#include "xml.h"
 #include "Text.h"
 #include "TextClass.h"
 #include "TocBackend.h"
@@ -466,9 +467,9 @@ bool Inset::idxUpDown(Cursor &, bool) const
 }
 
 
-int Inset::docbook(odocstream &, OutputParams const &) const
+void Inset::docbook(XMLStream & xs, OutputParams const &) const
 {
-       return 0;
+       xs << "[[Inset: " << from_ascii(insetName(lyxCode())) << "]]";
 }