Update of /cvsroot/openrpg/openrpg1/orpg/chat
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv30283/orpg/chat
Modified Files:
Tag: BRANCH-1-7-1
chatwnd.py
Log Message:
Index: chatwnd.py
===================================================================
RCS file: /cvsroot/openrpg/openrpg1/orpg/chat/chatwnd.py,v
retrieving revision 1.161.2.1
retrieving revision 1.161.2.2
diff -C2 -d -r1.161.2.1 -r1.161.2.2
*** chatwnd.py 13 Mar 2007 23:12:38 -0000 1.161.2.1
--- chatwnd.py 14 Mar 2007 00:02:35 -0000 1.161.2.2
***************
*** 2293,2297 ****
for i in xrange(0,len(matches)):
! dlg = wx.TextEntryDialog(self, matches[i][1] + "?", "Missing Value?")
dlg.SetValue('')
if matches[i][1] != '':
--- 2293,2300 ----
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] != '':
|