Commit 222753a9 authored by albert-github's avatar albert-github

Removed some comment statements.

parent fd91442b
......@@ -6564,14 +6564,9 @@ bool checkExtension(const char *fName, const char *ext)
return (QCString(fName).right(QCString(ext).length())==ext);
}
//QCString stripExtension(const char *fName, const char *ext)
QCString stripExtensionGeneral(const char *fName, const char *ext)
{
QCString result=fName;
//if (result.right(Doxygen::htmlFileExtension.length())==Doxygen::htmlFileExtension)
//{
//result=result.left(result.length()-Doxygen::htmlFileExtension.length());
//}
if (result.right(QCString(ext).length())==QCString(ext))
{
result=result.left(result.length()-QCString(ext).length());
......
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