From: Robin Dunn Date: Thu, 9 Sep 2004 23:14:24 +0000 (+0000) Subject: fixed case typo X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/60509cc126c4e41c6a6c47949fa0c47e34d2bb27 fixed case typo git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29074 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/wx/lib/ogl/_diagram.py b/wxPython/wx/lib/ogl/_diagram.py index a89bda3e95..d117a7c6a5 100644 --- a/wxPython/wx/lib/ogl/_diagram.py +++ b/wxPython/wx/lib/ogl/_diagram.py @@ -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)