[Python-checkins] python/dist/src/Mac/Tools/IDE PyEdit.py, 1.46, 1.47

jackjansen at users.sourceforge.net jackjansen at users.sourceforge.net
Thu Jun 3 17:55:49 EDT 2004


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

Modified Files:
	PyEdit.py 
Log Message:
Fix for #860242: use correct names in the "save preferences" dialog.


Index: PyEdit.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Tools/IDE/PyEdit.py,v
retrieving revision 1.46
retrieving revision 1.47
diff -C2 -d -r1.46 -r1.47
*** PyEdit.py	3 Jun 2004 21:27:15 -0000	1.46
--- PyEdit.py	3 Jun 2004 21:55:46 -0000	1.47
***************
*** 776,782 ****
  		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.other_radio = W.RadioButton((8, 82, 50, 18), "Other:", radiobuttons)
  		w.other_creator = W.EditText((62, 82, 40, 20), creator, self.otherselect)
--- 776,782 ----
  		radiobuttons = []
  		w.label = W.TextBox((8, 8, 80, 18), "File creator:")
! 		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)




More information about the Python-checkins mailing list