summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Ellert <mattias.ellert@fysast.uu.se>2014-08-31 18:50:07 (GMT)
committerMattias Ellert <mattias.ellert@fysast.uu.se>2014-08-31 18:50:07 (GMT)
commit6aa7f36ce924cf9dc59a951e5727b17c37d0345e (patch)
tree8b075d122c7df7b396d4cbbc23cc544bcde5ca98
parent41887832b90698df95e8d222cdc0a541ae2f2284 (diff)
downloadDoxygen-6aa7f36ce924cf9dc59a951e5727b17c37d0345e.zip
Doxygen-6aa7f36ce924cf9dc59a951e5727b17c37d0345e.tar.gz
Doxygen-6aa7f36ce924cf9dc59a951e5727b17c37d0345e.tar.bz2
Bug 735759 - Broken man pages due to bad use of autoBreak
-rw-r--r--src/memberdef.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/memberdef.cpp b/src/memberdef.cpp
index 80a4117..4848cc4 100644
--- a/src/memberdef.cpp
+++ b/src/memberdef.cpp
@@ -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);