dabo Commit
Revision 6712
Date: 2011-07-10 09:45:52 -0700 (Sun, 10 Jul 2011)
Author: Jacekk
Trac: http://trac.dabodev.com/changeset/6712

Changed:
U   trunk/dabo/ui/uiwx/dControlMixin.py

Log:
Use the super buil-in function in place of autosuper mixin.

Diff:
Modified: trunk/dabo/ui/uiwx/dControlMixin.py
===================================================================
--- trunk/dabo/ui/uiwx/dControlMixin.py 2011-07-10 16:42:58 UTC (rev 6711)
+++ trunk/dabo/ui/uiwx/dControlMixin.py 2011-07-10 16:45:52 UTC (rev 6712)
@@ -9,7 +9,7 @@
 
 class dControlMixin(dControlMixinBase):
        def _initEvents(self):
-               self.super()
+               super(dControlMixin, self)._initEvents()
                self.Bind(wx.EVT_NAVIGATION_KEY, self.__onWxNavKey)
 
        def _onWxHit(self, evt, *args, **kwargs):



_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev
Searchable Archives: http://leafe.com/archives/search/dabo-dev
This message: 
http://leafe.com/archives/byMID/[email protected]

Reply via email to