summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorJan Safranek <jsafrane@redhat.com>2013-03-25 16:20:58 +0100
committerJan Safranek <jsafrane@redhat.com>2013-03-25 16:20:58 +0100
commit317914e5e210109056b1e62ab2a2303a4d0b780f (patch)
tree5f05c5eaa35079a6c5dd2c3e022eaec28edc11e6 /tools
parent7203db44a73b0813bc194c1018bf489e8073cd9d (diff)
downloadopenlmi-providers-317914e5e210109056b1e62ab2a2303a4d0b780f.tar.gz
openlmi-providers-317914e5e210109056b1e62ab2a2303a4d0b780f.tar.xz
openlmi-providers-317914e5e210109056b1e62ab2a2303a4d0b780f.zip
Change orientation of resulting figure.
We want superclass on the top of subclass and not a vice versa.
Diffstat (limited to 'tools')
-rw-r--r--tools/openlmi-doc-class2uml2
1 files changed, 1 insertions, 1 deletions
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)