diff options
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r-- | src/doxygen.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index 1165c51..8360acb 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -4037,7 +4037,7 @@ static void addMemberDocs(Entry *root, static ClassDef *findClassDefinition(FileDef *fd,NamespaceDef *nd, const char *scopeName) { - ClassDef *tcd = getClass(scopeName); + ClassDef *tcd = getResolvedClass(nd,fd,scopeName); if (tcd==0) // try using declaration { ClassSDict *cl = 0; @@ -4438,7 +4438,7 @@ static void findMember(Entry *root, } //printf("new scope=`%s'\n",scopeName.data()); - QCString tempScopeName=scopeName.copy(); + QCString tempScopeName=scopeName; ClassDef *cd=getClass(scopeName); if (cd) { |