summaryrefslogtreecommitdiffstats
path: root/src/perlmodgen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/perlmodgen.cpp')
-rw-r--r--src/perlmodgen.cpp15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/perlmodgen.cpp b/src/perlmodgen.cpp
index 9da834d..bba416f 100644
--- a/src/perlmodgen.cpp
+++ b/src/perlmodgen.cpp
@@ -718,14 +718,15 @@ void PerlModDocVisitor::visit(DocVerbatim *s)
m_output.add("</programlisting>");
#endif
return;
- case DocVerbatim::Verbatim: type = "preformatted"; break;
- case DocVerbatim::HtmlOnly: type = "htmlonly"; break;
- case DocVerbatim::RtfOnly: type = "rtfonly"; break;
- case DocVerbatim::ManOnly: type = "manonly"; break;
+ case DocVerbatim::Verbatim: type = "preformatted"; break;
+ case DocVerbatim::HtmlOnly: type = "htmlonly"; break;
+ case DocVerbatim::RtfOnly: type = "rtfonly"; break;
+ case DocVerbatim::ManOnly: type = "manonly"; break;
case DocVerbatim::LatexOnly: type = "latexonly"; break;
- case DocVerbatim::XmlOnly: type = "xmlonly"; break;
- case DocVerbatim::Dot: type = "dot"; break;
- case DocVerbatim::Msc: type = "msc"; break;
+ case DocVerbatim::XmlOnly: type = "xmlonly"; break;
+ case DocVerbatim::DocbookOnly: type = "docbookonly"; break;
+ case DocVerbatim::Dot: type = "dot"; break;
+ case DocVerbatim::Msc: type = "msc"; break;
}
openItem(type);
m_output.addFieldQuotedString("content", s->text());