diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2014-08-04 18:27:25 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2014-08-04 18:27:25 (GMT) |
commit | d1e39098f94487f544a068b7864aa8d1b1f345cd (patch) | |
tree | c14abe4ce23eb4b530154aaa7b3f087a0625b171 /src | |
parent | 9451c09694970ee9856cdf798967c0c463d72ffa (diff) | |
download | Doxygen-d1e39098f94487f544a068b7864aa8d1b1f345cd.zip Doxygen-d1e39098f94487f544a068b7864aa8d1b1f345cd.tar.gz Doxygen-d1e39098f94487f544a068b7864aa8d1b1f345cd.tar.bz2 |
Made setName() virtual so overloading works
Diffstat (limited to 'src')
-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 dfd9dad..05ea621 100644 --- a/src/definition.h +++ b/src/definition.h @@ -271,7 +271,7 @@ class Definition : public DefinitionIntf //----------------------------------------------------------------------------------- /*! Sets a new \a name for the definition */ - void setName(const char *name); + virtual void setName(const char *name); /*! Sets a unique id for the symbol. Used for libclang integration. */ void setId(const char *name); |