diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2011-12-10 20:30:14 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2011-12-10 20:30:14 (GMT) |
commit | b625258a2f46f61e85bf473dfa64b719755c3b71 (patch) | |
tree | bb2f8266e3a639e6a4b15f02416a3aae5173c275 /src/util.cpp | |
parent | e48f695c385ccc356e124ac3a851a6228f4f5b84 (diff) | |
download | Doxygen-b625258a2f46f61e85bf473dfa64b719755c3b71.zip Doxygen-b625258a2f46f61e85bf473dfa64b719755c3b71.tar.gz Doxygen-b625258a2f46f61e85bf473dfa64b719755c3b71.tar.bz2 |
Release-1.7.6.1
Diffstat (limited to 'src/util.cpp')
-rw-r--r-- | src/util.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/util.cpp b/src/util.cpp index 5618078..66f29ab 100644 --- a/src/util.cpp +++ b/src/util.cpp @@ -492,7 +492,7 @@ static QDict<MemberDef> g_resolvedTypedefs; static QDict<Definition> g_visitedNamespaces; // forward declaration -ClassDef *getResolvedClassRec(Definition *scope, +static ClassDef *getResolvedClassRec(Definition *scope, FileDef *fileScope, const char *n, MemberDef **pTypeDef, @@ -1276,7 +1276,7 @@ static void getResolvedSymbol(Definition *scope, * match against the input name. Can recursively call itself when * resolving typedefs. */ -ClassDef *getResolvedClassRec(Definition *scope, +static ClassDef *getResolvedClassRec(Definition *scope, FileDef *fileScope, const char *n, MemberDef **pTypeDef, @@ -1374,7 +1374,7 @@ ClassDef *getResolvedClassRec(Definition *scope, } *p='\0'; - LookupInfo *pval=Doxygen::lookupCache.find(key); + LookupInfo *pval=Doxygen::lookupCache->find(key); //printf("Searching for %s result=%p\n",key.data(),pval); if (pval) { @@ -1393,7 +1393,7 @@ ClassDef *getResolvedClassRec(Definition *scope, else // not found yet; we already add a 0 to avoid the possibility of // endless recursion. { - Doxygen::lookupCache.insert(key,new LookupInfo); + Doxygen::lookupCache->insert(key,new LookupInfo); } ClassDef *bestMatch=0; @@ -1439,7 +1439,7 @@ ClassDef *getResolvedClassRec(Definition *scope, //printf("getResolvedClassRec: bestMatch=%p pval->resolvedType=%s\n", // bestMatch,bestResolvedType.data()); - pval=Doxygen::lookupCache.find(key); + pval=Doxygen::lookupCache->find(key); if (pval) { pval->classDef = bestMatch; @@ -1449,7 +1449,7 @@ ClassDef *getResolvedClassRec(Definition *scope, } else { - Doxygen::lookupCache.insert(key,new LookupInfo(bestMatch,bestTypedef,bestTemplSpec,bestResolvedType)); + Doxygen::lookupCache->insert(key,new LookupInfo(bestMatch,bestTypedef,bestTemplSpec,bestResolvedType)); } //printf("] bestMatch=%s distance=%d\n", // bestMatch?bestMatch->name().data():"<none>",minDistance); @@ -7203,7 +7203,7 @@ QCString langToString(SrcLangExt lang) /** Returns the scope separator to use given the programming language \a lang */ QCString getLanguageSpecificSeparator(SrcLangExt lang) { - if (lang==SrcLangExt_Java || lang==SrcLangExt_CSharp || lang==SrcLangExt_VHDL) + if (lang==SrcLangExt_Java || lang==SrcLangExt_CSharp || lang==SrcLangExt_VHDL || lang==SrcLangExt_Python) { return "."; } |