summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/docparser.cpp3
-rw-r--r--src/util.cpp5
-rw-r--r--src/util.h1
3 files changed, 8 insertions, 1 deletions
diff --git a/src/docparser.cpp b/src/docparser.cpp
index 90ace3f..597d304 100644
--- a/src/docparser.cpp
+++ b/src/docparser.cpp
@@ -662,6 +662,8 @@ static bool findDocsForMemberOrCompound(const char *commandName,
*pBrief="";
*pDef=0;
QCString cmdArg=substitute(commandName,"#","::");
+ cmdArg = replaceScopeSeparator(cmdArg);
+
int l=cmdArg.length();
if (l==0) return FALSE;
@@ -687,7 +689,6 @@ static bool findDocsForMemberOrCompound(const char *commandName,
QCString name=removeRedundantWhiteSpace(cmdArg.left(funcStart));
QCString args=cmdArg.right(l-funcStart);
-
// try if the link is to a member
const MemberDef *md=0;
const ClassDef *cd=0;
diff --git a/src/util.cpp b/src/util.cpp
index a6ae004..d458877 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -8454,6 +8454,11 @@ QCString getLanguageSpecificSeparator(SrcLangExt lang,bool classScope)
return "::";
}
}
+QCString replaceScopeSeparator(QCString str)
+{
+ // we don't know about the language so we have to go for the worse
+ return substitute(substitute(str,"\\","::"),".","::"); // PHP and Java, CSharp, VHDL, Python
+}
/** Checks whether the given url starts with a supported protocol */
bool isURL(const QCString &url)
{
diff --git a/src/util.h b/src/util.h
index 1cd7c9d..9873350 100644
--- a/src/util.h
+++ b/src/util.h
@@ -119,6 +119,7 @@ class LetterToIndexMap : public SIntDict<T>
QCString langToString(SrcLangExt lang);
QCString getLanguageSpecificSeparator(SrcLangExt lang,bool classScope=FALSE);
+QCString replaceScopeSeparator(QCString str);
//--------------------------------------------------------------------