diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2004-06-03 21:55:46 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2004-06-03 21:55:46 (GMT) |
commit | 0701bd64aaf5eacafa7b18f0e67273ed75943a8b (patch) | |
tree | 53d30e57610b5d88d073d8d56a92b51697170986 /Mac | |
parent | 30184f3611d867124f7030dfcb182ab89245f47a (diff) | |
download | cpython-0701bd64aaf5eacafa7b18f0e67273ed75943a8b.zip cpython-0701bd64aaf5eacafa7b18f0e67273ed75943a8b.tar.gz cpython-0701bd64aaf5eacafa7b18f0e67273ed75943a8b.tar.bz2 |
Fix for #860242: use correct names in the "save preferences" dialog.
Diffstat (limited to 'Mac')
-rw-r--r-- | Mac/Tools/IDE/PyEdit.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Mac/Tools/IDE/PyEdit.py b/Mac/Tools/IDE/PyEdit.py index e21fda5..ce228ff 100644 --- a/Mac/Tools/IDE/PyEdit.py +++ b/Mac/Tools/IDE/PyEdit.py @@ -775,9 +775,9 @@ class _saveoptions: self.w = w = W.ModalDialog((260, 160), 'Save options') radiobuttons = [] w.label = W.TextBox((8, 8, 80, 18), "File creator:") - w.ide_radio = W.RadioButton((8, 22, 160, 18), "This application", radiobuttons, self.ide_hit) - w.interp_radio = W.RadioButton((8, 42, 160, 18), "MacPython Interpreter", radiobuttons, self.interp_hit) - w.interpx_radio = W.RadioButton((8, 62, 160, 18), "OSX PythonW Interpreter", radiobuttons, self.interpx_hit) + w.ide_radio = W.RadioButton((8, 22, 160, 18), "PythonIDE", radiobuttons, self.ide_hit) + w.interp_radio = W.RadioButton((8, 42, 160, 18), "MacPython-OS9 Interpreter", radiobuttons, self.interp_hit) + w.interpx_radio = W.RadioButton((8, 62, 160, 18), "PythonLauncher", radiobuttons, self.interpx_hit) w.other_radio = W.RadioButton((8, 82, 50, 18), "Other:", radiobuttons) w.other_creator = W.EditText((62, 82, 40, 20), creator, self.otherselect) w.none_radio = W.RadioButton((8, 102, 160, 18), "None", radiobuttons, self.none_hit) |