summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2014-06-20 18:30:45 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2014-06-20 18:30:45 (GMT)
commit6617df2fa4ebd93ba437ac8ecc704b6cd7a1ef6a (patch)
treebb3a0362ca3fb931b22e7aa2cbb5dd4a9a173395
parent3d05cb6dd47e02b1e8c5e35cf51b440f1d57c5b4 (diff)
parentd7b0858e079419bb7ea862e16946218a9352d5b5 (diff)
downloadDoxygen-6617df2fa4ebd93ba437ac8ecc704b6cd7a1ef6a.zip
Doxygen-6617df2fa4ebd93ba437ac8ecc704b6cd7a1ef6a.tar.gz
Doxygen-6617df2fa4ebd93ba437ac8ecc704b6cd7a1ef6a.tar.bz2
Merge pull request #183 from chickenandpork/master
Resolves the error of unbalanced tags opened/closed in docbook output
-rw-r--r--src/docbookvisitor.cpp11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/docbookvisitor.cpp b/src/docbookvisitor.cpp
index 6867dce..f47994f 100644
--- a/src/docbookvisitor.cpp
+++ b/src/docbookvisitor.cpp
@@ -1005,7 +1005,16 @@ void DocbookDocVisitor::visitPre(DocParamSect *s)
break;
}
case DocParamSect::Exception:
- m_t << "exception"; break;
+ {
+ m_t << endl;
+ m_t << " <formalpara>" << endl;
+ m_t << " <title/>" << endl;
+ m_t << " <table frame=\"all\">" << endl;
+ m_t << " <title>Exceptions</title>" << endl;
+ m_t << " <tgroup cols=\"2\" align=\"left\" colsep=\"1\" rowsep=\"1\">" << endl;
+ m_t << " <tbody>" << endl;
+ break;
+ }
case DocParamSect::TemplateParam:
m_t << "templateparam"; break;
default: