From: Robin Dunn Date: Thu, 3 Jan 2002 18:18:55 +0000 (+0000) Subject: Fix for Python 2.2 issue X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/1278f7fcc56529b33d3874dae6c4e5e6a2aa49b0 Fix for Python 2.2 issue git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13340 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/wxPython/lib/buttons.py b/wxPython/wxPython/lib/buttons.py index 7e9aaa2aeb..e45726092a 100644 --- a/wxPython/wxPython/lib/buttons.py +++ b/wxPython/wxPython/lib/buttons.py @@ -151,7 +151,7 @@ class wxGenButton(wxControl): def SetBackgroundColour(self, colour): - wxWindow.SetBackgroundColour(self, colour) + wxControl.SetBackgroundColour(self, colour) # Calculate a new set of highlight and shadow colours based on # the new background colour. Works okay if the colour is dark...