dabo Commit Revision 2244 Date: 2006-06-30 12:12:18 -0700 (Fri, 30 Jun 2006) Author: ed
Changed: U trunk/dabo/ui/uiwx/dSplitter.py
Log: Fixed a bad call to self.super() that was causing a problem in the Designer.
Diff: Modified: trunk/dabo/ui/uiwx/dSplitter.py =================================================================== --- trunk/dabo/ui/uiwx/dSplitter.py 2006-06-29 17:57:56 UTC (rev 2243) +++ trunk/dabo/ui/uiwx/dSplitter.py 2006-06-30 19:12:18 UTC (rev 2244) @@ -120,7 +120,7 @@ def _initEvents(self): - self.super() + super(dSplitter, self)._initEvents() self.Bind(wx.EVT_SPLITTER_DCLICK, self._onSashDClick) self.Bind(wx.EVT_SPLITTER_SASH_POS_CHANGED, self._onSashPos)
©2006 Ed Leafe |