diff options
author | Just van Rossum <just@letterror.com> | 2001-06-19 21:38:42 (GMT) |
---|---|---|
committer | Just van Rossum <just@letterror.com> | 2001-06-19 21:38:42 (GMT) |
commit | fb3e54fd992e6b37bf64fe1569bce5f956ef2756 (patch) | |
tree | 42b97a9dc9e46578b28706a1f724ebd649d2aaa7 /Mac | |
parent | dc3c617cb884d9f12d55c2247f3e6b1b1f55aa36 (diff) | |
download | cpython-fb3e54fd992e6b37bf64fe1569bce5f956ef2756.zip cpython-fb3e54fd992e6b37bf64fe1569bce5f956ef2756.tar.gz cpython-fb3e54fd992e6b37bf64fe1569bce5f956ef2756.tar.bz2 |
made 7-bit-clean.
Diffstat (limited to 'Mac')
-rw-r--r-- | Mac/IDE scripts/Widget demos/WidgetTest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/IDE scripts/Widget demos/WidgetTest.py b/Mac/IDE scripts/Widget demos/WidgetTest.py index edef140..f88b059 100644 --- a/Mac/IDE scripts/Widget demos/WidgetTest.py +++ b/Mac/IDE scripts/Widget demos/WidgetTest.py @@ -46,7 +46,7 @@ window.et3 = W.EditText((130, 80, -10, 40), "two?") window.button = W.Button((-70, 10, 60, 16), "Close", callback) # a checkbox -window.ch = W.CheckBox((10, 130, 160, 16), "Check (command §)", checkcallback) +window.ch = W.CheckBox((10, 130, 160, 16), "Check (command \xa4)", checkcallback) # set of radio buttons (should become easier/nicer) thebuttons = [] @@ -65,7 +65,7 @@ window.hbar = W.Scrollbar((-1, -15, -14, 16), scrollcallback, max = 100) window.static = W.TextBox((10, 260, 110, 16), "Schtatic") # bind some keystrokes to functions -window.bind('cmd§', window.ch.push) +window.bind('cmd\xa4', window.ch.push) window.bind('cmd1', window.r1.push) window.bind('cmd2', window.r2.push) window.bind('cmd3', window.r3.push) |