]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/hangman.py
Demo update
[wxWidgets.git] / wxPython / demo / hangman.py
index 31c7c72fb3744ed485c8567f853e2593cf217495..eb591471a8a1895ce538a4f9ca8aa02625caea64 100644 (file)
@@ -294,7 +294,7 @@ class MyFrame(wxFrame):
         menu = wxMenu()
         #menu.Append(1010, "Internal", "Use internal dictionary", TRUE)
         menu.Append(1011, "ASCII File...")
-        urls = [ 'wxPython home', 'http://alldunn.com/wxPython/main.html',
+        urls = [ 'wxPython home', 'http://wxPython.org/',
                  'slashdot.org', 'http://slashdot.org/',
                  'cnn.com', 'http://cnn.com',
                  'The New York Times', 'http://www.nytimes.com',
@@ -431,7 +431,7 @@ class MyApp(wxApp):
         else:
             defaultfile = ""
         wf = WordFetcher(defaultfile)
-        frame = MyFrame(NULL, wf)
+        frame = MyFrame(None, wf)
         self.SetTopWindow(frame)
         frame.Show(TRUE)
         return TRUE