|
From: Kevin A. <ka...@us...> - 2004-08-15 17:35:09
|
Update of /cvsroot/pythoncard/PythonCard/tools/resourceEditor In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24441/tools/resourceEditor Modified Files: resourceEditor.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: resourceEditor.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/tools/resourceEditor/resourceEditor.py,v retrieving revision 1.205 retrieving revision 1.206 diff -C2 -d -r1.205 -r1.206 *** resourceEditor.py 12 Aug 2004 23:55:48 -0000 1.205 --- resourceEditor.py 15 Aug 2004 17:34:59 -0000 1.206 *************** *** 831,835 **** #print t[0], t[2], t[1] listX.append(t[0]) ! result = dialog.singleChoiceDialog(self, "Templates", "Choose a resource template", listX) if result.accepted: name = result.selection --- 831,835 ---- #print t[0], t[2], t[1] listX.append(t[0]) ! result = dialog.singleChoiceDialog(self, "Choose a resource template", "Templates", listX) if result.accepted: name = result.selection *************** *** 1379,1384 **** def on_optionGridSize_command(self, event): result = dialog.textEntryDialog(self, - 'Grid Size', 'Enter the preferred grid size (e.g. 5):', str(self.xGridSize)) if result.accepted: --- 1379,1384 ---- def on_optionGridSize_command(self, event): result = dialog.textEntryDialog(self, 'Enter the preferred grid size (e.g. 5):', + 'Grid Size', str(self.xGridSize)) if result.accepted: |