summaryrefslogtreecommitdiffstats
path: root/src/classlist.cpp
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2003-08-24 20:42:56 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2003-08-24 20:42:56 (GMT)
commit77a2ce8e15c967422cb1ff01dc78f5d9b1892c3d (patch)
treebfd280ef12015bf793b71236c30364c6618cbaf8 /src/classlist.cpp
parentd09056a74447fe1c841ffd469986afdffd99765b (diff)
downloadDoxygen-77a2ce8e15c967422cb1ff01dc78f5d9b1892c3d.zip
Doxygen-77a2ce8e15c967422cb1ff01dc78f5d9b1892c3d.tar.gz
Doxygen-77a2ce8e15c967422cb1ff01dc78f5d9b1892c3d.tar.bz2
Release-1.3.3-20030824
Diffstat (limited to 'src/classlist.cpp')
-rw-r--r--src/classlist.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/classlist.cpp b/src/classlist.cpp
index 60ac20c..35d35cd 100644
--- a/src/classlist.cpp
+++ b/src/classlist.cpp
@@ -95,7 +95,15 @@ void ClassSDict::writeDeclaration(OutputList &ol,const ClassDef::CompoundType *f
}
ol.startMemberItem(FALSE);
QCString tmp = cd->compoundTypeString();
- QCString cname = substitute(cd->className(),"::",".");
+ QCString cname;
+ if (Config_getBool("OPTIMIZE_OUTPUT_JAVA"))
+ {
+ cname = substitute(cd->className(),"::",".");
+ }
+ else
+ {
+ cname = cd->className();
+ }
ol.writeString(tmp);
ol.writeString(" ");
ol.insertMemberAlign();