From: Robin Dunn Date: Wed, 16 Jun 2004 02:22:30 +0000 (+0000) Subject: reordered base classes X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/ebd7cc3ae805e0960a66880f38b37614d434c3ca reordered base classes git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27822 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/wx/lib/activexwrapper.py b/wxPython/wx/lib/activexwrapper.py index 9ebbf63cdf..e4e66f445e 100644 --- a/wxPython/wx/lib/activexwrapper.py +++ b/wxPython/wx/lib/activexwrapper.py @@ -63,7 +63,7 @@ def MakeActiveXClass(CoClass, eventClass=None, eventObj=None): # determine the base classes axEventClass = CoClass.default_source - baseClasses = [wx.Window, pywin.mfc.activex.Control, CoClass, axEventClass] + baseClasses = [pywin.mfc.activex.Control, wx.Window, CoClass, axEventClass] if eventClass: baseClasses.append(eventClass) baseClasses = tuple(baseClasses)