summaryrefslogtreecommitdiffstats
path: root/src/doxygen.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2015-06-11 19:17:52 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2015-06-11 19:21:07 (GMT)
commita735498be5a572236755cc3da65bf4774cbac25c (patch)
tree5514b591e9bdb10e6032831bdd384ab3d1f96e3a /src/doxygen.cpp
parent7a0c06d1745739cb7f9753e75cb46f4a431b0eaa (diff)
downloadDoxygen-a735498be5a572236755cc3da65bf4774cbac25c.zip
Doxygen-a735498be5a572236755cc3da65bf4774cbac25c.tar.gz
Doxygen-a735498be5a572236755cc3da65bf4774cbac25c.tar.bz2
Bug 744762 - Using TAGFILES prevents symbol extraction
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r--src/doxygen.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index eb72a00..647b5c8 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -1745,6 +1745,13 @@ static void buildNamespaceList(EntryNav *rootNav)
{
nd->setLanguage(root->lang);
}
+ if (rootNav->tagInfo()==0) // if we found the namespace in a tag file
+ // and also in a project file, then remove
+ // the tag file reference
+ {
+ nd->setReference("");
+ nd->setFileName(fullName);
+ }
// file definition containing the namespace nd
FileDef *fd=rootNav->fileDef();