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

jackjansen at users.sourceforge.net jackjansen at users.sourceforge.net
Thu Jun 3 17:57:51 EDT 2004


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

Modified Files:
      Tag: release23-maint
	PyEdit.py 
Log Message:
Backport of 1.47:
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.43.8.2
retrieving revision 1.43.8.3
diff -C2 -d -r1.43.8.2 -r1.43.8.3
*** PyEdit.py	3 Jun 2004 21:36:58 -0000	1.43.8.2
--- PyEdit.py	3 Jun 2004 21:57:48 -0000	1.43.8.3
***************
*** 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