summaryrefslogtreecommitdiffstats
path: root/addon
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-05-18 08:58:51 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2019-05-18 08:58:51 (GMT)
commitde1cb37e6874a46c9882a6dc022942f24fb4ef16 (patch)
treee33bd27f81a3f61608b748cbec47e5b59e8fa032 /addon
parentbfd35110cc752ab3c51929b59ea829068a5a395b (diff)
downloadDoxygen-de1cb37e6874a46c9882a6dc022942f24fb4ef16.zip
Doxygen-de1cb37e6874a46c9882a6dc022942f24fb4ef16.tar.gz
Doxygen-de1cb37e6874a46c9882a6dc022942f24fb4ef16.tar.bz2
Fixed issue in doxmlparser in getter function
Diffstat (limited to 'addon')
-rw-r--r--addon/doxmlparser/src/compoundhandler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/addon/doxmlparser/src/compoundhandler.h b/addon/doxmlparser/src/compoundhandler.h
index f669133..b05ba3d 100644
--- a/addon/doxmlparser/src/compoundhandler.h
+++ b/addon/doxmlparser/src/compoundhandler.h
@@ -51,7 +51,7 @@ class IncludeHandler : public IInclude, public BaseHandler<IncludeHandler>
virtual const IString * refId() const
{ return &m_refId; }
virtual bool isLocal() const
- { return &m_isLocal; }
+ { return m_isLocal; }
private:
IBaseHandler *m_parent;