summaryrefslogtreecommitdiffstats
path: root/src/dot.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2004-03-07 21:00:29 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2004-03-07 21:00:29 (GMT)
commitce05925c34c21ec1d2033970745a86affd039445 (patch)
treeecc570be1c038ecdb55dda6d9ffe794945151261 /src/dot.cpp
parentf13d78d4dfe3e075e0f91ee8d62603fadf18a3a9 (diff)
downloadDoxygen-ce05925c34c21ec1d2033970745a86affd039445.zip
Doxygen-ce05925c34c21ec1d2033970745a86affd039445.tar.gz
Doxygen-ce05925c34c21ec1d2033970745a86affd039445.tar.bz2
Release-1.3.6-20040307
Diffstat (limited to 'src/dot.cpp')
-rw-r--r--src/dot.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dot.cpp b/src/dot.cpp
index d7de2db..86ef71e 100644
--- a/src/dot.cpp
+++ b/src/dot.cpp
@@ -486,7 +486,7 @@ static void writeBoxMemberList(QTextStream &t,char prot,MemberList &ml,ClassDef
if (mma->getClassDef() == scope)
{
t << prot << " " << convertLabel(mma->name());
- if (mma->isFunction()) t << "()";
+ if (!mma->isObjCMethod() && mma->isFunction()) t << "()";
t << "\\l";
}
}