main logo
Subject: [dabo-dev] dabo Commit 2244
Author: Ed Leafe
Posted: 2006/06/30 14:12:17
 
View Entire Thread
New Search


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
<-- Prior Message New Search Next Message -->