summaryrefslogtreecommitdiffstats
path: root/src/dot.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/dot.cpp')
-rw-r--r--src/dot.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/dot.cpp b/src/dot.cpp
index 9b3161d..862d14c 100644
--- a/src/dot.cpp
+++ b/src/dot.cpp
@@ -426,7 +426,9 @@ static void writeBoxMemberList(QTextStream &t,char prot,MemberList &ml,ClassDef
{
if (mma->getClassDef() == scope)
{
- t << prot << " " << convertLabel(mma->name()) << "\\l";
+ t << prot << " " << convertLabel(mma->name());
+ if (mma->isFunction()) t << "()";
+ t << "\\l";
}
}
}