projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
init m_isOpened in ctor (bug 736208)
[wxWidgets.git]
/
wxPython
/
demo
/
wxPopupWindow.py
diff --git
a/wxPython/demo/wxPopupWindow.py
b/wxPython/demo/wxPopupWindow.py
index 86500f3d10bc3a6ead6486b32ac6da2d777c5f70..0ee3df748cc6f33373573044495e72e42b6cb2f1 100644
(file)
--- a/
wxPython/demo/wxPopupWindow.py
+++ b/
wxPython/demo/wxPopupWindow.py
@@
-55,7
+55,7
@@
class TestPopup(wxPopupWindow):
self.ReleaseMouse()
def OnRightUp(self, evt):
self.ReleaseMouse()
def OnRightUp(self, evt):
- self.Show(
f
alse)
+ self.Show(
F
alse)
self.Destroy()
self.Destroy()
@@
-80,7
+80,7
@@
class TestTransientPopup(wxPopupTransientWindow):
def ProcessLeftDown(self, evt):
self.log.write("ProcessLeftDown\n")
def ProcessLeftDown(self, evt):
self.log.write("ProcessLeftDown\n")
- return
f
alse
+ return
F
alse
def OnDismiss(self):
self.log.write("OnDismiss\n")
def OnDismiss(self):
self.log.write("OnDismiss\n")
@@
-113,7
+113,7
@@
class TestPanel(wxPanel):
sz = btn.GetSize()
win.Position(pos, (0, sz.height))
sz = btn.GetSize()
win.Position(pos, (0, sz.height))
- win.Show(
t
rue)
+ win.Show(
T
rue)
def OnShowPopupTransient(self, evt):
def OnShowPopupTransient(self, evt):
@@
-139,7
+139,7
@@
class TestPanel(wxPanel):
sz = btn.GetSize()
win.Position(pos, (0, sz.height))
sz = btn.GetSize()
win.Position(pos, (0, sz.height))
- win.Show(
t
rue)
+ win.Show(
T
rue)
class TestPopupWithListbox(wxPopupWindow):
def __init__(self, parent, style, log):
class TestPopupWithListbox(wxPopupWindow):
def __init__(self, parent, style, log):
@@
-181,3
+181,12
@@
def runTest(frame, nb, log):
overview = """\
"""
overview = """\
"""
+
+
+
+
+if __name__ == '__main__':
+ import sys,os
+ import run
+ run.main(['', os.path.basename(sys.argv[0])])
+