fixed case typo

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29074 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2004-09-09 23:14:24 +00:00
parent c32bde282c
commit 60509cc126

View File

@ -84,7 +84,7 @@ class Diagram(object):
for shape in self._shapeList:
shape.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."""
dc.SetPen(wx.Pen(wx.Color(0, 0, 0), 1, wx.DOT))
dc.SetBrush(wx.TRANSPARENT_BRUSH)