Update of /cvsroot/pythoncard/PythonCard/samples/fpop
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27879/samples/fpop
Modified Files:
fpop.py
Log Message:
more dialog related fixes
Index: fpop.py
===================================================================
RCS file: /cvsroot/pythoncard/PythonCard/samples/fpop/fpop.py,v
retrieving revision 1.46
retrieving revision 1.47
diff -C2 -d -r1.46 -r1.47
*** fpop.py 15 Aug 2004 17:34:56 -0000 1.46
--- fpop.py 15 Aug 2004 17:55:36 -0000 1.47
***************
*** 336,340 ****
if self.POPpwd == '':
result = dialog.textEntryDialog(self, 'Enter your password:', 'Password',
! '', wx.TEXT_PASSWORD)
if result.accepted and result.text != '':
self.POPpwd = result.text
--- 336,340 ----
if self.POPpwd == '':
result = dialog.textEntryDialog(self, 'Enter your password:', 'Password',
! '', wx.TE_PASSWORD)
if result.accepted and result.text != '':
self.POPpwd = result.text
|