diff options
Diffstat (limited to 'src/dirdef.cpp')
-rw-r--r-- | src/dirdef.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dirdef.cpp b/src/dirdef.cpp index c2739f2..4ee4a9a 100644 --- a/src/dirdef.cpp +++ b/src/dirdef.cpp @@ -50,7 +50,7 @@ DirDef::~DirDef() bool DirDef::isLinkableInProject() const { - return !isReference() && Config_getBool("SHOW_DIRECTORIES"); + return !isReference(); } bool DirDef::isLinkable() const @@ -231,7 +231,7 @@ void DirDef::writeSubDirList(OutputList &ol) FALSE, // indexWords FALSE, // isExample 0, // exampleName - FALSE, // single line + TRUE, // single line TRUE // link from index ); ol.endMemberDescription(); @@ -292,7 +292,7 @@ void DirDef::writeFileList(OutputList &ol) FALSE, // indexWords FALSE, // isExample 0, // exampleName - FALSE, // single line + TRUE, // single line TRUE // link from index ); ol.endMemberDescription(); |