summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-05-15 19:22:24 (GMT)
committerGitHub <noreply@github.com>2019-05-15 19:22:24 (GMT)
commite53cdd41be674e8e121b7be656eb2ab269a8d5b6 (patch)
treedf829aa999d21efd4bd8dd60e76d987c9ebeefe4
parent3817370a1ae5aea6bb6653eae48bcb4a7771b863 (diff)
parent645e4415a32efe3987c1711f65fa2ac06779b260 (diff)
downloadDoxygen-e53cdd41be674e8e121b7be656eb2ab269a8d5b6.zip
Doxygen-e53cdd41be674e8e121b7be656eb2ab269a8d5b6.tar.gz
Doxygen-e53cdd41be674e8e121b7be656eb2ab269a8d5b6.tar.bz2
Merge pull request #6988 from albert-github/feature/bug_htags_call_graph
USE_HTAGS = YES, there are _no_ call / caller graphs in the documentation
-rw-r--r--src/doxygen.cpp13
1 files changed, 5 insertions, 8 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index 983eeb7..d6cbd0c 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -7958,7 +7958,7 @@ static void generateFileSources()
{
QStrList filesInSameTu;
fd->startParsing();
- if (fd->generateSourceFile() && !g_useOutputTemplate) // sources need to be shown in the output
+ if (fd->generateSourceFile() && !Htags::useHtags && !g_useOutputTemplate) // sources need to be shown in the output
{
msg("Generating code for file %s...\n",fd->docName().data());
fd->writeSource(*g_outputList,FALSE,filesInSameTu);
@@ -7988,7 +7988,7 @@ static void generateFileSources()
{
QStrList filesInSameTu;
fd->startParsing();
- if (fd->generateSourceFile() && !g_useOutputTemplate) // sources need to be shown in the output
+ if (fd->generateSourceFile() && !Htags::useHtags && !g_useOutputTemplate) // sources need to be shown in the output
{
msg("Generating code for file %s...\n",fd->docName().data());
fd->writeSource(*g_outputList,FALSE,filesInSameTu);
@@ -11737,12 +11737,9 @@ void generateOutput()
generateExampleDocs();
g_s.end();
- if (!Htags::useHtags)
- {
- g_s.begin("Generating file sources...\n");
- generateFileSources();
- g_s.end();
- }
+ g_s.begin("Generating file sources...\n");
+ generateFileSources();
+ g_s.end();
g_s.begin("Generating file documentation...\n");
generateFileDocs();