|
From: Kevin A. <ka...@us...> - 2004-08-15 17:35:07
|
Update of /cvsroot/pythoncard/PythonCard/samples/widgets In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24441/samples/widgets Modified Files: widgets.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: widgets.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/widgets/widgets.py,v retrieving revision 1.40 retrieving revision 1.41 diff -C2 -d -r1.40 -r1.41 *** widgets.py 12 Aug 2004 19:19:05 -0000 1.40 --- widgets.py 15 Aug 2004 17:34:58 -0000 1.41 *************** *** 139,143 **** def on_btnToolTip_mouseClick(self, event): ! result = dialog.textEntryDialog(self, 'ToolTip', 'Enter a toolTip', 'Hello toolTip') if result.accepted: txt = result.text --- 139,143 ---- def on_btnToolTip_mouseClick(self, event): ! result = dialog.textEntryDialog(self, 'Enter a toolTip:', 'ToolTip', 'Hello toolTip') if result.accepted: txt = result.text |