]> git.saurik.com Git - wxWidgets.git/commitdiff
Don't call wx.ThePenList
authorRobin Dunn <robin@alldunn.com>
Wed, 18 Aug 2004 02:34:03 +0000 (02:34 +0000)
committerRobin Dunn <robin@alldunn.com>
Wed, 18 Aug 2004 02:34:03 +0000 (02:34 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28825 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/wx/lib/ogl/_lines.py

index 66e891cf7e386f2a8396ac2c8b4b0eb40dfe1f38..8b9c0fba7717cfd9ff0b558ebf96e4dccbc11e55 100644 (file)
@@ -1021,7 +1021,7 @@ class LineShape(Shape):
         # Problem with pen - if not a solid pen, does strange things
         # to the arrowhead. So make (get) a new pen that's solid.
         if self._pen and self._pen.GetStyle() != wx.SOLID:
-            solid_pen = wx.ThePenList().FindOrCreatePen(self._pen.GetColour(), 1, wx.SOLID)
+            solid_pen = wx.ThePenList.FindOrCreatePen(self._pen.GetColour(), 1, wx.SOLID)
             if solid_pen:
                 dc.SetPen(solid_pen)