summaryrefslogtreecommitdiffstats
path: root/src/index.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2002-07-28 20:14:48 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2002-07-28 20:14:48 (GMT)
commit9c8ea2e90bb38ba21675799fe364fc7a546b020c (patch)
treeeb4c65d3676c6ecd00dc532bcb6420f9eb71aa32 /src/index.cpp
parenta2bf2ebcf009a45c53748f0c7f9182c017c0bcd9 (diff)
downloadDoxygen-9c8ea2e90bb38ba21675799fe364fc7a546b020c.zip
Doxygen-9c8ea2e90bb38ba21675799fe364fc7a546b020c.tar.gz
Doxygen-9c8ea2e90bb38ba21675799fe364fc7a546b020c.tar.bz2
Release-1.2.17-20020728
Diffstat (limited to 'src/index.cpp')
-rw-r--r--src/index.cpp12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/index.cpp b/src/index.cpp
index cd93267..2754080 100644
--- a/src/index.cpp
+++ b/src/index.cpp
@@ -1382,17 +1382,9 @@ void writeAlphabeticalClassList(OutputList &ol)
}
else if (cd) // a real class, insert a link
{
- QCString cname;
QCString namesp;
- if (cd->getNamespaceDef()) namesp=cd->getNamespaceDef()->name();
- if (Config_getBool("HIDE_SCOPE_NAMES"))
- {
- cname=cd->displayName();
- }
- else
- {
- cname=cd->className();
- }
+ if (cd->getNamespaceDef()) namesp=cd->getNamespaceDef()->displayName();
+ QCString cname=cd->displayName();
ol.writeObjectLink(cd->getReference(),
cd->getOutputFileBase(),0,cname);