diff options
Diffstat (limited to 'src/filedef.h')
-rw-r--r-- | src/filedef.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/filedef.h b/src/filedef.h index 2bdbbcf..79525b0 100644 --- a/src/filedef.h +++ b/src/filedef.h @@ -110,12 +110,12 @@ class FileDef : public Definition /*! Returns the absolute path of this file. */ QCString getPath() const { return path; } - bool isLinkableInProject() + bool isLinkableInProject() const { return hasDocumentation() && !isReference(); } - bool isLinkable() + bool isLinkable() const { return isLinkableInProject() || isReference(); } |