]> git.saurik.com Git - wxWidgets.git/commitdiff
SetTextColour is gone
authorRobin Dunn <robin@alldunn.com>
Sun, 29 Oct 2006 03:05:07 +0000 (03:05 +0000)
committerRobin Dunn <robin@alldunn.com>
Sun, 29 Oct 2006 03:05:07 +0000 (03:05 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42603 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/demo/GraphicsContext.py

index a383ff742589ad041ee52c407d35fdf577989bb4..bc2d3039ebea74493f172056b19bbbb538a83fa9 100644 (file)
@@ -42,7 +42,6 @@ class TestPanel(wx.Panel):
 
         gc.SetPen(wx.Pen("navy", 1))
         gc.SetBrush(wx.Brush("pink"))
-        gc.SetTextColour("black")
 
         # show the difference between stroking, filling and drawing
         for label, PathFunc in [("StrokePath", gc.StrokePath),