summaryrefslogtreecommitdiffstats
path: root/src/msc.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2013-07-02 14:14:09 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2013-07-02 14:14:09 (GMT)
commit8a0c9440a9f19db3fb9020d9cc087746c1c3fce1 (patch)
tree9edc63600a3bb4d9f89872f11da73f189dde4a60 /src/msc.cpp
parentf4719c307b07cbfa29800d4027a116ef4c907067 (diff)
downloadDoxygen-8a0c9440a9f19db3fb9020d9cc087746c1c3fce1.zip
Doxygen-8a0c9440a9f19db3fb9020d9cc087746c1c3fce1.tar.gz
Doxygen-8a0c9440a9f19db3fb9020d9cc087746c1c3fce1.tar.bz2
Bug 703213 - Can't use @ref instead of \ref with msc
Diffstat (limited to 'src/msc.cpp')
-rw-r--r--src/msc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/msc.cpp b/src/msc.cpp
index f9b069e..91b1d05 100644
--- a/src/msc.cpp
+++ b/src/msc.cpp
@@ -55,7 +55,7 @@ static bool convertMapFile(QTextStream &t,const char *mapName,const QCString rel
// obtain the url and the coordinates in the order used by graphviz-1.5
sscanf(buf,"rect %s %d,%d %d,%d",url,&x1,&y1,&x2,&y2);
- if ( strcmp(url,"\\ref") == 0 )
+ if (qstrcmp(url,"\\ref")==0 || qstrcmp(url,"@ref")==0)
{
isRef = TRUE;
sscanf(buf,"rect %s %s %d,%d %d,%d",ref,url,&x1,&y1,&x2,&y2);