diff options
Diffstat (limited to 'src/filedef.h')
-rw-r--r-- | src/filedef.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/filedef.h b/src/filedef.h index 8fcf6c1..0bc19d6 100644 --- a/src/filedef.h +++ b/src/filedef.h @@ -87,9 +87,9 @@ class FileDef : public Definition /*! Returns the name as it is used in the documentation */ QCString docName() const { return docname; } - void addSourceRef(int line,Definition *d,const char *anchor); + void addSourceRef(int line,Definition *d,MemberDef *md); Definition *getSourceDefinition(int lineNr); - QCString getSourceAnchor(int lineNr); + MemberDef *getSourceMember(int lineNr); /* Sets the name of the include file to \a n. */ //void setIncludeName(const char *n_) { incName=n_; } @@ -157,7 +157,7 @@ class FileDef : public Definition QCString docname; //QCString incName; QIntDict<Definition> *srcDefDict; - QIntDict<QCString> *srcAnchorDict; + QIntDict<MemberDef> *srcMemberDict; bool isSource; /* user defined member groups */ |