summaryrefslogtreecommitdiffstats
path: root/src/memberdef.cpp
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-04-23 18:39:17 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2000-04-23 18:39:17 (GMT)
commite2b4a623decf7c8b4435f742f05d07323ad8d6f2 (patch)
treeae15def425ebe4c6c13d7b4ffd8e147e03d535b3 /src/memberdef.cpp
parent0e7fba152ca1c24593a5c9b01460116d16ca3f97 (diff)
downloadDoxygen-e2b4a623decf7c8b4435f742f05d07323ad8d6f2.zip
Doxygen-e2b4a623decf7c8b4435f742f05d07323ad8d6f2.tar.gz
Doxygen-e2b4a623decf7c8b4435f742f05d07323ad8d6f2.tar.bz2
Release-1.1.2-20000423
Diffstat (limited to 'src/memberdef.cpp')
-rw-r--r--src/memberdef.cpp13
1 files changed, 3 insertions, 10 deletions
diff --git a/src/memberdef.cpp b/src/memberdef.cpp
index 36d4945..2f6aae7 100644
--- a/src/memberdef.cpp
+++ b/src/memberdef.cpp
@@ -634,12 +634,12 @@ void MemberDef::writeDeclaration(OutputList &ol,
else
{
type = type.left(i) + " { ... } " + type.right(type.length()-i-l);
- linkifyText(ol,cname,name(),type);
+ linkifyText(ol,cname,name(),type,TRUE);
}
}
else
{
- linkifyText(ol,cname,name(),type);
+ linkifyText(ol,cname,name(),type,TRUE);
}
bool htmlOn = ol.isEnabled(OutputGenerator::Html);
if (htmlOn && Config::htmlAlignMemberFlag && !type.isEmpty())
@@ -995,14 +995,7 @@ void MemberDef::writeDocumentation(MemberList *ml,OutputList &ol,
parseText(ol,theTranslator->trInitialValue());
ol.endBold();
ol.startCodeFragment();
- if (isDefine())
- {
- parseCode(ol,scopeName,init,FALSE,0);
- }
- else
- {
- parseCode(ol,scopeName,init.simplifyWhiteSpace(),FALSE,0);
- }
+ parseCode(ol,scopeName,init,FALSE,0);
ol.endCodeFragment();
}