From: Kevin A. <ka...@us...> - 2004-08-15 17:35:08
|
Update of /cvsroot/pythoncard/PythonCard/tools/textEditor In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24441/tools/textEditor Modified Files: textEditor.pyw 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: textEditor.pyw =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/tools/textEditor/textEditor.pyw,v retrieving revision 1.74 retrieving revision 1.75 diff -C2 -d -r1.74 -r1.75 *** textEditor.pyw 12 Aug 2004 19:14:23 -0000 1.74 --- textEditor.pyw 15 Aug 2004 17:35:00 -0000 1.75 *************** *** 444,448 **** def on_doEditGoTo_command(self, event): ! result = dialog.textEntryDialog(self, 'Goto line', 'Goto line number:', '') # this version doesn't alert the user if the line number is out-of-range # it just fails quietly --- 444,448 ---- def on_doEditGoTo_command(self, event): ! result = dialog.textEntryDialog(self, 'Goto line number:', 'Goto line', '') # this version doesn't alert the user if the line number is out-of-range # it just fails quietly |