From: Kevin A. <ka...@us...> - 2004-08-15 17:35:08
|
Update of /cvsroot/pythoncard/PythonCard/tools/codeEditor In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24441/tools/codeEditor Modified Files: codeEditor.py Log Message: reversed message and title args for multipleChoiceDialog, singleChoiceDialog, textEntryDialog added singleChoiceDialog workaround for 2.5.2.7 added Alex to LICENSE.txt Index: codeEditor.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/tools/codeEditor/codeEditor.py,v retrieving revision 1.122 retrieving revision 1.123 diff -C2 -d -r1.122 -r1.123 *** codeEditor.py 12 Aug 2004 19:14:20 -0000 1.122 --- codeEditor.py 15 Aug 2004 17:34:59 -0000 1.123 *************** *** 757,761 **** def on_doEditGoTo_command(self, event): ! result = dialog.textEntryDialog(self, self.resource.strings.gotoLine, self.resource.strings.gotoLineNumber, '') # this version doesn't alert the user if the line number is out-of-range # it just fails quietly --- 757,761 ---- def on_doEditGoTo_command(self, event): ! result = dialog.textEntryDialog(self, self.resource.strings.gotoLineNumber, self.resource.strings.gotoLine, '') # this version doesn't alert the user if the line number is out-of-range # it just fails quietly |