From 317914e5e210109056b1e62ab2a2303a4d0b780f Mon Sep 17 00:00:00 2001 From: Jan Safranek Date: Mon, 25 Mar 2013 16:20:58 +0100 Subject: Change orientation of resulting figure. We want superclass on the top of subclass and not a vice versa. --- tools/openlmi-doc-class2uml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/openlmi-doc-class2uml b/tools/openlmi-doc-class2uml index 8d524f5..6d8c1ea 100644 --- a/tools/openlmi-doc-class2uml +++ b/tools/openlmi-doc-class2uml @@ -65,7 +65,7 @@ class UmlExporter(object): if c.super_class: # draw arrow to parent - print >>self.file, "%s -down-|> %s" % (c.name, c.super_class.name) + print >>self.file, "%s -up-|> %s" % (c.name, c.super_class.name) if box_only: self.file.write("class %s\n\n" % c.name) -- cgit