From: Robin Dunn Date: Thu, 23 Dec 2004 20:19:17 +0000 (+0000) Subject: Changed GetSystemColour to GetColour X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/de6ca7ff44a114f531a014485cb43bb604aefb14 Changed GetSystemColour to GetColour git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31126 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/wx/lib/foldmenu.py b/wxPython/wx/lib/foldmenu.py index 41f76bbf16..1c1bc1f88a 100644 --- a/wxPython/wx/lib/foldmenu.py +++ b/wxPython/wx/lib/foldmenu.py @@ -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):