]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/ContextHelp.py
fix text scrolling in GTK2 (patch 703988)
[wxWidgets.git] / wxPython / demo / ContextHelp.py
index 6985790b696160615a4d789e9c232454e8c14063..7bca0c5156a38a1aa025dcbb1d47d965c58edefd 100644 (file)
@@ -3,7 +3,7 @@ from wxPython.wx import *
 from wxPython.help import *
 
 #----------------------------------------------------------------------
-# We first have to set an application wide help provider.  Normally you
+# We first have to set an application-wide help provider.  Normally you
 # would do this in your app's OnInit or in other startup code...
 
 provider = wxSimpleHelpProvider()
@@ -53,7 +53,7 @@ class TestPanel(wxPanel):
         border = wxBoxSizer(wxVERTICAL)
         border.Add(sizer, 0, wxALL, 25)
 
-        self.SetAutoLayout(true)
+        self.SetAutoLayout(True)
         self.SetSizer(border)
         self.Layout()
 
@@ -64,7 +64,7 @@ class TestPanel(wxPanel):
 
 
     def OnCtxHelp2(self, evt):
-         self.log.write("OnCtxHelp: %s" % evt)
+         self.log.write("OnCtxHelp: %s\n" % evt)
          tip = wxTipWindow(self, "This is a wxTipWindow")
 
 
@@ -90,3 +90,10 @@ help into your applicaiton using the wxSimpleHelpProvider class.
 
 #----------------------------------------------------------------------
 
+
+
+if __name__ == '__main__':
+    import sys,os
+    import run
+    run.main(['', os.path.basename(sys.argv[0])])
+