Update of /cvsroot/openrpg/openrpg1/orpg/chat
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv30695/orpg/chat
Modified Files:
chatwnd.py
Log Message:
Index: chatwnd.py
===================================================================
RCS file: /cvsroot/openrpg/openrpg1/orpg/chat/chatwnd.py,v
retrieving revision 1.165
retrieving revision 1.166
diff -C2 -d -r1.165 -r1.166
*** chatwnd.py 13 Mar 2007 23:11:42 -0000 1.165
--- chatwnd.py 14 Mar 2007 00:03:12 -0000 1.166
***************
*** 2331,2335 ****
for i in xrange(0,len(matches)):
! dlg = wx.TextEntryDialog(self, matches[i][1] + "?", "Missing Value?")
dlg.SetValue('')
if matches[i][1] != '':
--- 2331,2338 ----
for i in xrange(0,len(matches)):
! lb = "Replace '?' with: "
! if len(matches[i][1]):
! lb = matches[i][1] + "?: "
! dlg = wx.TextEntryDialog(self, lb, "Missing Value?")
dlg.SetValue('')
if matches[i][1] != '':
|