diff options
Diffstat (limited to 'src/definition.h')
-rw-r--r-- | src/definition.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/definition.h b/src/definition.h index bc8c6c7..e8f71d7 100644 --- a/src/definition.h +++ b/src/definition.h @@ -69,7 +69,7 @@ class Definition virtual bool isLinkableInProject() = 0; virtual bool isLinkable() = 0; - bool isReference() { return !ref.isEmpty(); } + bool isReference() const { return !ref.isEmpty(); } void setReference(const char *r) { ref=r; } QCString getReference() { return ref; } |