projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Unicode support added
[wxWidgets.git]
/
wxPython
/
demo
/
FindReplaceDialog.py
diff --git
a/wxPython/demo/FindReplaceDialog.py
b/wxPython/demo/FindReplaceDialog.py
index 54cc07ee3b5c5eaeeabc2605381a84b63e9ffeaa..5180882231123d329f9187fb99b5ee575db21b76 100644
(file)
--- a/
wxPython/demo/FindReplaceDialog.py
+++ b/
wxPython/demo/FindReplaceDialog.py
@@
-63,8
+63,6
@@
class TestPanel(wx.Panel):
et = evt.GetEventType()
et = evt.GetEventType()
- #print evt.GetReplaceString()
-
if et in map:
evtType = map[et]
else:
if et in map:
evtType = map[et]
else:
@@
-77,7
+75,7
@@
class TestPanel(wx.Panel):
else:
replaceTxt = ""
else:
replaceTxt = ""
- self.log.write("%s -- Find text: %s %s Flags: %d \n" %
+ self.log.write("%s -- Find text: %s
Replace text:
%s Flags: %d \n" %
(evtType, evt.GetFindString(), replaceTxt, evt.GetFlags()))
(evtType, evt.GetFindString(), replaceTxt, evt.GetFlags()))
@@
-119,5
+117,5
@@
will be invalid after the parent dialog is destroyed.
if __name__ == '__main__':
import sys,os
import run
if __name__ == '__main__':
import sys,os
import run
- run.main(['', os.path.basename(sys.argv[0])])
+ run.main(['', os.path.basename(sys.argv[0])]
+ sys.argv[1:]
)