]> granicus.if.org Git - python/commitdiff
Fix for #860242: use correct names in the "save preferences" dialog.
authorJack Jansen <jack.jansen@cwi.nl>
Thu, 3 Jun 2004 21:55:46 +0000 (21:55 +0000)
committerJack Jansen <jack.jansen@cwi.nl>
Thu, 3 Jun 2004 21:55:46 +0000 (21:55 +0000)
Mac/Tools/IDE/PyEdit.py

index e21fda54cf568a6d8d16f5d37e71b4e10ca0db80..ce228ff6cb29f272b856218682d49c930f7d5396 100644 (file)
@@ -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)