diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-06-09 16:56:34 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2002-06-09 16:56:34 (GMT) |
commit | 784e2b65dc675f89c8f21b3c7b306f5fb1bfa4ca (patch) | |
tree | 84818288910d8f77f48ecf8e6b5fe3f4291d7a18 /src/doxygen.cpp | |
parent | 4c054d8406f9e4ceb582001c48cf659262774d0c (diff) | |
download | Doxygen-784e2b65dc675f89c8f21b3c7b306f5fb1bfa4ca.zip Doxygen-784e2b65dc675f89c8f21b3c7b306f5fb1bfa4ca.tar.gz Doxygen-784e2b65dc675f89c8f21b3c7b306f5fb1bfa4ca.tar.bz2 |
Release-1.2.16-20020609
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r-- | src/doxygen.cpp | 36 |
1 files changed, 21 insertions, 15 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index 20a7b57..0322193 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -5754,15 +5754,21 @@ static void resolveUserReferences() si->fileName=si->definition->getOutputFileBase().copy(); } } - // hack: the items of a todo/test list are all fragments from different files, - // so the resulting section's all have the wrong file name (not from the - // todo/test list, but from the file in which they are defined). We correct this - // here by looking at the generated section labels! + // hack: the items of a todo/test/bug list are all fragments from + // different files, so the resulting section's all have the wrong file + // name (not from the todo/test/bug list, but from the file in which they + // are defined). We correct this here by looking at the generated section + // labels! if (si->label.left(5)=="_todo" || si->label.left(5)=="_test") { si->fileName=si->label.mid(1,4); // extract "todo" or "test" si->generated=TRUE; } + else if (si->label.left(4)=="_bug") + { + si->fileName="bug"; + si->generated=TRUE; + } } } @@ -6774,11 +6780,11 @@ void readConfiguration(int argc, char **argv) exit(1); } - QCString outputLanguage=Config_getEnum("OUTPUT_LANGUAGE"); - if (!setTranslator(outputLanguage)) - { - err("Error: Output language %s not supported! Using English instead.\n", outputLanguage.data()); - } + QCString outputLanguage=Config_getEnum("OUTPUT_LANGUAGE"); + if (!setTranslator(outputLanguage)) + { + err("Error: Output language %s not supported! Using English instead.\n", outputLanguage.data()); + } QFile f; if (openOutputFile(argv[optind+1],f)) @@ -6820,11 +6826,11 @@ void readConfiguration(int argc, char **argv) exit(1); } - QCString outputLanguage=Config_getEnum("OUTPUT_LANGUAGE"); - if (!setTranslator(outputLanguage)) - { - err("Error: Output language %s not supported! Using English instead.\n", outputLanguage.data()); - } + QCString outputLanguage=Config_getEnum("OUTPUT_LANGUAGE"); + if (!setTranslator(outputLanguage)) + { + err("Error: Output language %s not supported! Using English instead.\n", outputLanguage.data()); + } QFile f; if (openOutputFile(argv[optind+1],f)) @@ -7158,7 +7164,7 @@ void parseInput() **************************************************************************/ Entry *root=new Entry; - msg("Reading tag files\n"); + msg("Reading and parsing tag files\n"); QStrList &tagFileList = Config_getList("TAGFILES"); s=tagFileList.first(); |