summaryrefslogtreecommitdiffstats
path: root/src/mangen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2002-09-27 17:06:31 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2002-09-27 17:06:31 (GMT)
commit858708350c055a757c1e34461a06c5cf2277f2db (patch)
treef0751a83dd63c0dc8f76a3cd2044acf074e860a2 /src/mangen.cpp
parent047ff890c6a53d02ffc96712f8e6dac03fdf3e04 (diff)
downloadDoxygen-858708350c055a757c1e34461a06c5cf2277f2db.zip
Doxygen-858708350c055a757c1e34461a06c5cf2277f2db.tar.gz
Doxygen-858708350c055a757c1e34461a06c5cf2277f2db.tar.bz2
Release-1.2.18-20020927
Diffstat (limited to 'src/mangen.cpp')
-rw-r--r--src/mangen.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/mangen.cpp b/src/mangen.cpp
index 6464790..bf99072 100644
--- a/src/mangen.cpp
+++ b/src/mangen.cpp
@@ -29,6 +29,7 @@
#include "doxygen.h"
#include <string.h>
#include "docparser.h"
+#include "mandocvisitor.h"
static QCString getExtension()
{
@@ -613,7 +614,10 @@ void ManGenerator::endParamList()
{
}
-void ManGenerator::printDoc(DocNode *)
+void ManGenerator::printDoc(DocNode *n)
{
+ ManDocVisitor *visitor = new ManDocVisitor(t,*this);
+ n->accept(visitor);
+ delete visitor;
}