summaryrefslogtreecommitdiffstats
path: root/src/mangen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2004-03-24 21:24:19 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2004-03-24 21:24:19 (GMT)
commitcba24284923c7319c08926c3ba9cd20f3eee3fdf (patch)
treea065befb32bff6f5eb381ff808ed70509bd19a09 /src/mangen.cpp
parentce05925c34c21ec1d2033970745a86affd039445 (diff)
downloadDoxygen-cba24284923c7319c08926c3ba9cd20f3eee3fdf.zip
Doxygen-cba24284923c7319c08926c3ba9cd20f3eee3fdf.tar.gz
Doxygen-cba24284923c7319c08926c3ba9cd20f3eee3fdf.tar.bz2
Release-1.3.6-20040324
Diffstat (limited to 'src/mangen.cpp')
-rw-r--r--src/mangen.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mangen.cpp b/src/mangen.cpp
index 6981372..6f11f82 100644
--- a/src/mangen.cpp
+++ b/src/mangen.cpp
@@ -35,10 +35,9 @@ static QCString getExtension()
{
QCString ext = Config_getString("MAN_EXTENSION");
if( ext.length() >= 2 &&
- ext.data()[0] == '.' &&
- isdigit( ext.data()[1] ) )
+ ext.data()[0] == '.')
{
- ext = ext.mid(1, 1);
+ ext = ext.mid(1, ext.length()-1);
}
else
{
@@ -95,6 +94,7 @@ void ManGenerator::init()
err("Could not create output directory %s/man%s\n",manOutput.data(),ext.data());
exit(1);
}
+ createSubDirs(d);
}
static QCString buildFileName(const char *name)
@@ -405,7 +405,7 @@ void ManGenerator::startDoxyAnchor(const char *,const char *manName,
linkfile.close();
}
-void ManGenerator::endMemberDoc()
+void ManGenerator::endMemberDoc(bool)
{
t << "\"";
}