summaryrefslogtreecommitdiffstats
path: root/src/doxygen.cpp
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2003-11-03 18:04:43 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2003-11-03 18:04:43 (GMT)
commita2a1e97fd2b0e3045482aa46978ac2d0ae1c6e11 (patch)
tree3d4fa775ba4ee12135f2ca20f59e2cb07f3efdf1 /src/doxygen.cpp
parent4c9ea88d11a7a5b2293d2f3c63e06a32dd010850 (diff)
downloadDoxygen-a2a1e97fd2b0e3045482aa46978ac2d0ae1c6e11.zip
Doxygen-a2a1e97fd2b0e3045482aa46978ac2d0ae1c6e11.tar.gz
Doxygen-a2a1e97fd2b0e3045482aa46978ac2d0ae1c6e11.tar.bz2
Release-1.3.4-20031103
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r--src/doxygen.cpp4
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)
{