X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f6bcfd974ef26faf6f91a62cac09827e09463fd1..7f88f624d649a7feca8bcc90864cb9ef57eb5d8e:/wxPython/demo/SlashDot.py diff --git a/wxPython/demo/SlashDot.py b/wxPython/demo/SlashDot.py index cebe1438c5..03fc98011f 100644 --- a/wxPython/demo/SlashDot.py +++ b/wxPython/demo/SlashDot.py @@ -352,7 +352,7 @@ class AppFrame(wxFrame): if __name__ == '__main__': class MyApp(wxApp): def OnInit(self): - frame = AppFrame(NULL, -1, "Slashdot Breaking News") + frame = AppFrame(None, -1, "Slashdot Breaking News") frame.Show(true) self.SetTopWindow(frame) return true @@ -366,7 +366,7 @@ if __name__ == '__main__': # if running as part of the Demo Framework... def runTest(frame, nb, log): - win = AppFrame(NULL, -1, "Slashdot Breaking News") + win = AppFrame(None, -1, "Slashdot Breaking News") frame.otherWin = win win.Show(true)