]> git.saurik.com Git - wxWidgets.git/commitdiff
Changed GetSystemColour to GetColour
authorRobin Dunn <robin@alldunn.com>
Thu, 23 Dec 2004 20:19:17 +0000 (20:19 +0000)
committerRobin Dunn <robin@alldunn.com>
Thu, 23 Dec 2004 20:19:17 +0000 (20:19 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31126 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/wx/lib/foldmenu.py

index 41f76bbf16ee1c1d27175070cf4c4f3138ef01ef..1c1bc1f88a0f23255f6499ef18f74e29a82a696c 100644 (file)
@@ -19,7 +19,7 @@ class FoldOutWindow(wx.PopupWindow):
         self.Bind(wx.EVT_LEAVE_WINDOW, self.evLeave)
         
     def InitColors(self):
-        faceClr = wx.SystemSettings_GetSystemColour(wx.SYS_COLOUR_WINDOW)
+        faceClr = wx.SystemSettings.GetColour(wx.SYS_COLOUR_WINDOW)
         self.SetBackgroundColour(faceClr)
 
     def AddButton(self,bitmap,handler=None):