Commit f25d896d authored by albert-github's avatar albert-github

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.
parent 99433b3d
......@@ -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");
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment