summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2016-10-17 19:57:14 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2016-10-17 19:57:14 (GMT)
commitadb44ae6ef1d102caea1338373be078bf4a5d640 (patch)
tree29ffb08423dd2fc0d0cc17e99b6fe3188e956c7b
parenta95c07ecc0a2f1205883d8420a8280c5701c901c (diff)
downloadDoxygen-adb44ae6ef1d102caea1338373be078bf4a5d640.zip
Doxygen-adb44ae6ef1d102caea1338373be078bf4a5d640.tar.gz
Doxygen-adb44ae6ef1d102caea1338373be078bf4a5d640.tar.bz2
Bug 729921 - wrong collaboration diagram when in template used scoped argument type
-rwxr-xr-xsrc/util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp
index 6f7703b..44f635e 100755
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -6147,7 +6147,7 @@ QCString normalizeNonTemplateArgumentsInString(
p++;
QCString result = name.left(p);
- static QRegExp re("[a-z_A-Z\\x80-\\xFF][a-z_A-Z0-9\\x80-\\xFF]*");
+ static QRegExp re("[a-z:_A-Z\\x80-\\xFF][a-z:_A-Z0-9\\x80-\\xFF]*");
int l,i;
// for each identifier in the template part (e.g. B<T> -> T)
while ((i=re.match(name,p,&l))!=-1)