diff options
author | albert-github <albert.tests@gmail.com> | 2014-05-20 19:09:19 (GMT) |
---|---|---|
committer | albert-github <albert.tests@gmail.com> | 2014-05-20 19:09:19 (GMT) |
commit | f25d896d4da9b44c23f89bfdd0379fa97ab2c351 (patch) | |
tree | 6665d05a66eb09959fdeecefae79a909fe442768 /src | |
parent | 99433b3d2319916f11608c2c818fe35360256d9e (diff) | |
download | Doxygen-f25d896d4da9b44c23f89bfdd0379fa97ab2c351.zip Doxygen-f25d896d4da9b44c23f89bfdd0379fa97ab2c351.tar.gz Doxygen-f25d896d4da9b44c23f89bfdd0379fa97ab2c351.tar.bz2 |
Bug 730418 - man page extension is incorrect
Test in respect to handling extension was tone wit equal less than / greater than sign and should only be less than and greater than. Resulting in the fact that in case of a chosen extension starting with .0 or .9 an 3 was pre-pended.
Diffstat (limited to 'src')
-rw-r--r-- | src/mangen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mangen.cpp b/src/mangen.cpp index cf6795b..352ef15 100644 --- a/src/mangen.cpp +++ b/src/mangen.cpp @@ -56,7 +56,7 @@ static QCString getExtension() ext = ext.mid(1); } } - if (ext.at(0)<='0' || ext.at(0)>='9') + if (ext.at(0)<'0' || ext.at(0)>'9') { ext.prepend("3"); } |