|
From: Kevin A. <ka...@us...> - 2004-08-15 17:35:36
|
Update of /cvsroot/pythoncard/PythonCard/samples/fpop In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24441/samples/fpop Modified Files: fpop.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: fpop.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/fpop/fpop.py,v retrieving revision 1.45 retrieving revision 1.46 diff -C2 -d -r1.45 -r1.46 *** fpop.py 12 Aug 2004 19:18:52 -0000 1.45 --- fpop.py 15 Aug 2004 17:34:56 -0000 1.46 *************** *** 335,339 **** # while the program is running if self.POPpwd == '': ! result = dialog.textEntryDialog(self, 'Password', 'Enter your password:', '', wx.TEXT_PASSWORD) if result.accepted and result.text != '': --- 335,339 ---- # while the program is running if self.POPpwd == '': ! result = dialog.textEntryDialog(self, 'Enter your password:', 'Password', '', wx.TEXT_PASSWORD) if result.accepted and result.text != '': |