X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f6bcfd974ef26faf6f91a62cac09827e09463fd1..59d04dff037f66e9e73b389de72835211f5f0bcd:/wxPython/demo/hangman.py diff --git a/wxPython/demo/hangman.py b/wxPython/demo/hangman.py index 31c7c72fb3..eb591471a8 100644 --- a/wxPython/demo/hangman.py +++ b/wxPython/demo/hangman.py @@ -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