[Python-checkins] python/dist/src/Mac/Tools/IDE Wbase.py, 1.15, 1.16

birkenfeld@users.sourceforge.net birkenfeld at users.sourceforge.net
Fri Jul 22 23:50:02 CEST 2005


Update of /cvsroot/python/python/dist/src/Mac/Tools/IDE
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21637/Mac/Tools/IDE

Modified Files:
	Wbase.py 
Log Message:
Fix all wrong instances of "it's".



Index: Wbase.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Tools/IDE/Wbase.py,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- Wbase.py	18 Jul 2004 05:58:14 -0000	1.15
+++ Wbase.py	22 Jul 2005 21:49:30 -0000	1.16
@@ -128,28 +128,28 @@
             # depending on the values of l(eft), t(op), r(right) and b(ottom),
             # they mean different things:
             if l < -1:
-                # l is less than -1, this mean it measures from the *right* of it's parent
+                # l is less than -1, this mean it measures from the *right* of its parent
                 l = pr + l
             else:
-                # l is -1 or greater, this mean it measures from the *left* of it's parent
+                # l is -1 or greater, this mean it measures from the *left* of its parent
                 l = pl + l
             if t < -1:
-                # t is less than -1, this mean it measures from the *bottom* of it's parent
+                # t is less than -1, this mean it measures from the *bottom* of its parent
                 t = pb + t
             else:
-                # t is -1 or greater, this mean it measures from the *top* of it's parent
+                # t is -1 or greater, this mean it measures from the *top* of its parent
                 t = pt + t
             if r > 1:
                 # r is greater than 1, this means r is the *width* of the widget
                 r = l + r
             else:
-                # r is less than 1, this means it measures from the *right* of it's parent
+                # r is less than 1, this means it measures from the *right* of its parent
                 r = pr + r
             if b > 1:
                 # b is greater than 1, this means b is the *height* of the widget
                 b = t + b
             else:
-                # b is less than 1, this means it measures from the *bottom* of it's parent
+                # b is less than 1, this means it measures from the *bottom* of its parent
                 b = pb + b
             self._bounds = (l, t, r, b)
         if oldbounds and oldbounds <> self._bounds:



More information about the Python-checkins mailing list