Update of /cvsroot/pycrust/PyCrust/wxd
In directory sc8-pr-cvs1:/tmp/cvs-serv4010
Modified Files:
Sizers.py
Log Message:
Added "call Layout()" reminders.
Index: Sizers.py
===================================================================
RCS file: /cvsroot/pycrust/PyCrust/wxd/Sizers.py,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** Sizers.py 25 Mar 2003 23:12:40 -0000 1.5
--- Sizers.py 27 Mar 2003 15:24:19 -0000 1.6
***************
*** 139,143 ****
item - window, sizer, or spacer. Spacer is specified with a
! (width, height) tuple or wx.Size representing the spacer size."""
pass
--- 139,145 ----
item - window, sizer, or spacer. Spacer is specified with a
! (width, height) tuple or wx.Size representing the spacer size.
!
! Call Layout() to update the layout on-screen after adding."""
pass
***************
*** 214,218 ****
userData=wx.NULL):
"""Same as Add, but inserts item into list of items (windows,
! subsizers or spacers) owned by this sizer."""
pass
--- 216,222 ----
userData=wx.NULL):
"""Same as Add, but inserts item into list of items (windows,
! subsizers or spacers) owned by this sizer.
!
! Call Layout() to update the layout on-screen after inserting."""
pass
***************
*** 231,235 ****
userData=wx.NULL):
"""Same as Add, but prepends item to beginning of list of
! items (windows, subsizers or spacers) owned by this sizer."""
pass
--- 235,241 ----
userData=wx.NULL):
"""Same as Add, but prepends item to beginning of list of
! items (windows, subsizers or spacers) owned by this sizer.
!
! Call Layout() to update the layout on-screen after prepending."""
pass
|