[Commits] (jed) Fixed up line lengths.
commits at osafoundation.org
commits at osafoundation.org
Mon Apr 12 12:11:34 PDT 2004
Commit by: jed
Modified files:
osaf/chandler/Chandler/parcels/OSAF/framework/blocks/ContainerBlocks.py 1.69.2.3 1.69.2.4
Log message:
Fixed up line lengths.
ViewCVS links:
http://cvs.osafoundation.org/index.cgi/osaf/chandler/Chandler/parcels/OSAF/framework/blocks/ContainerBlocks.py.diff?r1=text&tr1=1.69.2.3&r2=text&tr2=1.69.2.4
Index: osaf/chandler/Chandler/parcels/OSAF/framework/blocks/ContainerBlocks.py
diff -u osaf/chandler/Chandler/parcels/OSAF/framework/blocks/ContainerBlocks.py:1.69.2.3 osaf/chandler/Chandler/parcels/OSAF/framework/blocks/ContainerBlocks.py:1.69.2.4
--- osaf/chandler/Chandler/parcels/OSAF/framework/blocks/ContainerBlocks.py:1.69.2.3 Tue Mar 30 14:09:29 2004
+++ osaf/chandler/Chandler/parcels/OSAF/framework/blocks/ContainerBlocks.py Mon Apr 12 12:11:03 2004
@@ -1,5 +1,5 @@
-__version__ = "$Revision: 1.69.2.3 $"
-__date__ = "$Date: 2004/03/30 22:09:29 $"
+__version__ = "$Revision: 1.69.2.4 $"
+__date__ = "$Date: 2004/04/12 19:11:03 $"
__copyright__ = "Copyright (c) 2003 Open Source Applications Foundation"
__license__ = "http://osafoundation.org/Chandler_0.1_license_terms.htm"
@@ -132,7 +132,9 @@
def __init__(self, *arguments, **keywords):
wx.SplitterWindow.__init__ (self, *arguments, **keywords)
- self.Bind(wx.EVT_SPLITTER_SASH_POS_CHANGED, self.OnSplitChanged, id=self.GetId())
+ self.Bind(wx.EVT_SPLITTER_SASH_POS_CHANGED,
+ self.OnSplitChanged,
+ id=self.GetId())
"""
Setting minimum pane size prevents unsplitting a window by double-clicking
"""
@@ -152,8 +154,8 @@
def OnSize(self, event):
if not Globals.wxApplication.insideSynchronizeFramework:
"""
- Calling Skip causes wxWindows to continue processing the event, which
- will cause the parent class to get a crack at the event.
+ Calling Skip causes wxWindows to continue processing the event,
+ which will cause the parent class to get a crack at the event.
"""
event.Skip()
counterpart = Globals.repository.find (self.counterpartUUID)
@@ -172,8 +174,10 @@
wx.DefaultPosition,
(self.size.width, self.size.height),
style=self.Calculate_wxStyle(parentWindow))
- self.parentBlock.addToContainer(parent, splitWindow, self.stretchFactor,
- self.Calculate_wxFlag(), self.Calculate_wxBorder())
+ self.parentBlock.addToContainer(parent, splitWindow,
+ self.stretchFactor,
+ self.Calculate_wxFlag(),
+ self.Calculate_wxBorder())
"""
Wire up onSize after __init__ has been called, otherwise it will
call onSize
More information about the Commits
mailing list