Correct call to shape.Show()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29576 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2004-09-30 23:12:29 +00:00
parent aba3d35e7b
commit 94bc006bd2

View File

@@ -82,7 +82,7 @@ class Diagram(object):
def ShowAll(self, show): def ShowAll(self, show):
"""Call Show for each shape in the diagram.""" """Call Show for each shape in the diagram."""
for shape in self._shapeList: for shape in self._shapeList:
shape.Show() shape.Show(show)
def DrawOutline(self, dc, x1, y1, x2, y2): def DrawOutline(self, dc, x1, y1, x2, y2):
"""Draw an outline rectangle on the current device context.""" """Draw an outline rectangle on the current device context."""