summaryrefslogtreecommitdiffstats
path: root/src/filedef.cpp
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2008-03-09 18:07:08 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2008-03-09 18:07:08 (GMT)
commitfb91b752942b81dac21be5ad18bcb09fbafa711b (patch)
treec4662316ba92eaf4d6ffbd9d06645fd4c6e85195 /src/filedef.cpp
parentb43cd6311a712c01c2c8297fa00809730e504d70 (diff)
downloadDoxygen-fb91b752942b81dac21be5ad18bcb09fbafa711b.zip
Doxygen-fb91b752942b81dac21be5ad18bcb09fbafa711b.tar.gz
Doxygen-fb91b752942b81dac21be5ad18bcb09fbafa711b.tar.bz2
Release-1.5.5-20080309
Diffstat (limited to 'src/filedef.cpp')
-rw-r--r--src/filedef.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/filedef.cpp b/src/filedef.cpp
index 47304c2..5ba3094 100644
--- a/src/filedef.cpp
+++ b/src/filedef.cpp
@@ -1449,3 +1449,10 @@ void FileDef::writeMemberDocumentation(OutputList &ol,MemberList::ListType lt,co
MemberList * ml = getMemberList(lt);
if (ml) ml->writeDocumentation(ol,name(),this,title);
}
+
+bool FileDef::isLinkableInProject() const
+{
+ static bool showFiles = Config_getBool("SHOW_FILES");
+ return hasDocumentation() && !isReference() && showFiles;
+}
+