diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-09-10 15:26:30 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-09-10 15:26:30 (GMT) |
commit | 69ead65c747f7fa7817c0a754dfe2662004037a1 (patch) | |
tree | 19b06b53ec293b6d690ff3d82f256f67576dee1c /src/index.cpp | |
parent | 92663f876495b7d98aa85d604d0149f8b73c8dc7 (diff) | |
download | Doxygen-69ead65c747f7fa7817c0a754dfe2662004037a1.zip Doxygen-69ead65c747f7fa7817c0a754dfe2662004037a1.tar.gz Doxygen-69ead65c747f7fa7817c0a754dfe2662004037a1.tar.bz2 |
Release-20000910
Diffstat (limited to 'src/index.cpp')
-rw-r--r-- | src/index.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/index.cpp b/src/index.cpp index bd4810b..75d5e92 100644 --- a/src/index.cpp +++ b/src/index.cpp @@ -333,7 +333,7 @@ void countFiles(int &htmlFiles,int &files) for (;(fd=fni.current());++fni) { bool doc = fd->isLinkableInProject(); - bool src = fd->generateSource() || Config::sourceBrowseFlag; + bool src = fd->generateSourceFile(); if (doc || src) { htmlFiles++; @@ -415,7 +415,7 @@ void writeFileIndex(OutputList &ol) { //printf("Found filedef %s\n",fd->name().data()); bool doc = fd->isLinkableInProject(); - bool src = fd->generateSource() || Config::sourceBrowseFlag; + bool src = fd->generateSourceFile(); if ((doc || src) && !fd->isReference()) { QCString path; @@ -849,7 +849,7 @@ void writeAlphabeticalClassList(OutputList &ol) if (!namesp.isEmpty()) { ol.docify(" ("); - NamespaceDef *nd = namespaceDict[namesp]; + NamespaceDef *nd = getResolvedNamespace(namesp); if (nd && nd->isLinkable()) { ol.writeObjectLink(nd->getReference(), |