Skip to content

Commit

Permalink
Bug 735759 - Broken man pages due to bad use of autoBreak
Browse files Browse the repository at this point in the history
  • Loading branch information
ellert committed Aug 31, 2014
1 parent 4188783 commit 6aa7f36
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/memberdef.cpp
Expand Up @@ -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();
Expand All @@ -1545,7 +1545,7 @@ void MemberDef::writeDeclaration(OutputList &ol,
getBodyDef(), // fileScope
this, // self
ltype, // text
TRUE // autoBreak
FALSE // autoBreak
);
}
}
Expand All @@ -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);
Expand Down

0 comments on commit 6aa7f36

Please sign in to comment.