diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-06-11 19:22:39 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-06-11 19:22:39 (GMT) |
commit | 975a88d42fb296be726c8063819327a262195bbd (patch) | |
tree | a213e1477917c43abbeeac764fe4d2846e726728 /src/filedef.h | |
parent | 3472b3019d048213d4c6f15e17d40602b8ca6e78 (diff) | |
download | Doxygen-975a88d42fb296be726c8063819327a262195bbd.zip Doxygen-975a88d42fb296be726c8063819327a262195bbd.tar.gz Doxygen-975a88d42fb296be726c8063819327a262195bbd.tar.bz2 |
Release-1.1.4-20000611
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 */ |