[Commits] (jed) Fixed typo that reversed parameters from GetSize()
commits at osafoundation.org
commits at osafoundation.org
Thu Aug 5 15:01:37 PDT 2004
Commit by: jed
Modified files:
chandler/parcels/osaf/framework/blocks/ControlBlocks.py 1.92 1.93
Log message:
Fixed typo that reversed parameters from GetSize()
ViewCVS links:
http://cvs.osafoundation.org/index.cgi/chandler/parcels/osaf/framework/blocks/ControlBlocks.py.diff?r1=text&tr1=1.92&r2=text&tr2=1.93
Index: chandler/parcels/osaf/framework/blocks/ControlBlocks.py
diff -u chandler/parcels/osaf/framework/blocks/ControlBlocks.py:1.92 chandler/parcels/osaf/framework/blocks/ControlBlocks.py:1.93
--- chandler/parcels/osaf/framework/blocks/ControlBlocks.py:1.92 Thu Aug 5 13:43:50 2004
+++ chandler/parcels/osaf/framework/blocks/ControlBlocks.py Thu Aug 5 15:01:35 2004
@@ -1,5 +1,5 @@
-__version__ = "$Revision: 1.92 $"
-__date__ = "$Date: 2004/08/05 20:43:50 $"
+__version__ = "$Revision: 1.93 $"
+__date__ = "$Date: 2004/08/05 22:01:35 $"
__copyright__ = "Copyright (c) 2003 Open Source Applications Foundation"
__license__ = "http://osafoundation.org/Chandler_0.1_license_terms.htm"
@@ -496,9 +496,9 @@
# The scroll bars aren't resized (at least on windows)
# Jiggling the size of the window rescales the scrollbars
- h,w = self.GetSize()
- self.SetSize ((h+1, w))
- self.SetSize ((h, w))
+ w,h = self.GetSize()
+ self.SetSize ((w+1, h))
+ self.SetSize ((w, h))
self.ForceRefresh ()
def wxSynchronizeWidget(self):
More information about the Commits
mailing list