diff options
author | Georg Brandl <georg@python.org> | 2005-07-22 21:49:32 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2005-07-22 21:49:32 (GMT) |
commit | 7eb4b7d177adae5b5d0aefa6f54170b3967b2473 (patch) | |
tree | 9006926c7dc6c5ca522c2fdbf055a40f88fad2b1 /Mac/Tools | |
parent | 08c02dbb85a8eebe3395658260dec36dd4169381 (diff) | |
download | cpython-7eb4b7d177adae5b5d0aefa6f54170b3967b2473.zip cpython-7eb4b7d177adae5b5d0aefa6f54170b3967b2473.tar.gz cpython-7eb4b7d177adae5b5d0aefa6f54170b3967b2473.tar.bz2 |
Fix all wrong instances of "it's".
Diffstat (limited to 'Mac/Tools')
-rw-r--r-- | Mac/Tools/IDE/Wbase.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Mac/Tools/IDE/Wbase.py b/Mac/Tools/IDE/Wbase.py index 4eef120..93e499f 100644 --- a/Mac/Tools/IDE/Wbase.py +++ b/Mac/Tools/IDE/Wbase.py @@ -128,28 +128,28 @@ class Widget: # 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: |