summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2015-11-08 18:27:15 (GMT)
committeralbert-github <albert.tests@gmail.com>2015-11-08 18:27:15 (GMT)
commit61820a08200ec62c754cacf8dd3a1121ce6dee69 (patch)
treec35dbab1d285ae11cbed0176469f7a79fff51442 /src
parente2dd83527381c67d38434e5cf1348f2a94887500 (diff)
downloadDoxygen-61820a08200ec62c754cacf8dd3a1121ce6dee69.zip
Doxygen-61820a08200ec62c754cacf8dd3a1121ce6dee69.tar.gz
Doxygen-61820a08200ec62c754cacf8dd3a1121ce6dee69.tar.bz2
Fortran module private variables and EXTRACT_PRIVATE = NO
From the message in the doxygen forum(http://doxygen.10944.n7.nabble.com/Fortan-problems-td7434.html and http://doxygen.10944.n7.nabble.com/Fortran-module-private-variables-and-EXTRACT-PRIVATE-NO-td7423.html) B. If EXTRACT_PRIVATE = NO, module private functions are not listed (as expected) but module private variables are (bug!). C. Implicit PRIVATE/PUBLIC/PROTECTED statements in a module work as expected but are not "appended" to function/variable documentation. This is only a nuisance. Problem had a common cause, the protection was hard set to 'Public' instead of the read value (analogous to static)
Diffstat (limited to 'src')
-rw-r--r--src/doxygen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index 3341b3a..1e2c3ee 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -2591,7 +2591,7 @@ static MemberDef *addVariableToFile(
MemberDef *md=new MemberDef(
fileName,root->startLine,root->startColumn,
root->type,name,root->args,0,
- Public, Normal,root->stat,Member,
+ root->protection, Normal,root->stat,Member,
mtype,root->tArgLists ? root->tArgLists->getLast() : 0,0);
md->setTagInfo(rootNav->tagInfo());
md->setMemberSpecifiers(root->spec);
@@ -7324,7 +7324,7 @@ static void addEnumValuesToEnums(EntryNav *rootNav)
MemberDef *fmd=new MemberDef(
fileName,root->startLine,root->startColumn,
root->type,root->name,root->args,0,
- Public, Normal,root->stat,Member,
+ root->protection, Normal,root->stat,Member,
MemberType_EnumValue,0,0);
if (md->getClassDef()) fmd->setMemberClass(md->getClassDef());
else if (md->getNamespaceDef()) fmd->setNamespace(md->getNamespaceDef());