dabo Commit
Revision 1534
Date: 2005-11-10 09:37:34 -0800 (Thu, 10 Nov 2005)
Author: ed

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

Log:
Changed the Size and Position props to return tuples instead of wx.Size and 
wx.Point objects.


Diff:
Modified: trunk/dabo/ui/uiwx/dPemMixin.py
===================================================================
--- trunk/dabo/ui/uiwx/dPemMixin.py     2005-11-10 17:29:23 UTC (rev 1533)
+++ trunk/dabo/ui/uiwx/dPemMixin.py     2005-11-10 17:37:34 UTC (rev 1534)
@@ -1373,7 +1373,7 @@
 
                
        def _getPosition(self):
-               return self.GetPosition()
+               return self.GetPosition().Get()
 
        def _setPosition(self, val):
                if self._constructed():
@@ -1399,7 +1399,7 @@
        
        
        def _getSize(self): 
-               return self.GetSize()
+               return self.GetSize().Get()
 
        def _setSize(self, val):
                if self._constructed():




_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev

Reply via email to