Commit 230a78be authored by Dimitri van Heesch's avatar Dimitri van Heesch

Merge pull request #218 from ellert/bad-break

Bug 735759 - Broken man pages due to bad use of autoBreak
parents 41887832 6aa7f36c
......@@ -1531,7 +1531,7 @@ void MemberDef::writeDeclaration(OutputList &ol,
getBodyDef(), // fileScope
this, // self
ltype.left(i), // text
TRUE // autoBreak
FALSE // autoBreak
);
getAnonymousEnumType()->writeEnumDeclaration(ol,cd,nd,fd,gd,compoundType);
//ol+=*getAnonymousEnumType()->enumDecl();
......@@ -1545,7 +1545,7 @@ void MemberDef::writeDeclaration(OutputList &ol,
getBodyDef(), // fileScope
this, // self
ltype, // text
TRUE // autoBreak
FALSE // autoBreak
);
}
}
......@@ -1566,7 +1566,7 @@ void MemberDef::writeDeclaration(OutputList &ol,
getBodyDef(), // fileScope
this, // self
ltype, // text
TRUE // autoBreak
FALSE // autoBreak
);
}
bool htmlOn = ol.isEnabled(OutputGenerator::Html);
......
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