Commit fac9a7ce authored by Dimitri van Heesch's avatar Dimitri van Heesch

Merge pull request #27 from albert-github/feature/bug_706804

Feature/bug 706804
parents 42cb811b b7c3088d
......@@ -1998,7 +1998,7 @@ static void addSubprogram(const char *text)
subrCurrent.prepend(current);
current->section = Entry::FUNCTION_SEC ;
QCString subtype = text; subtype=subtype.lower().stripWhiteSpace();
functionLine = subtype=="function";
functionLine = (subtype.find("function") != -1);
current->type += " " + subtype;
current->type = current->type.stripWhiteSpace();
current->fileName = yyFileName;
......
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