X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f6bcfd974ef26faf6f91a62cac09827e09463fd1..3136f782be549a29c0065d5d221656bb8b98fe4d:/wxPython/demo/wxPrintDialog.py diff --git a/wxPython/demo/wxPrintDialog.py b/wxPython/demo/wxPrintDialog.py index 50da750bd2..183cbe801c 100644 --- a/wxPython/demo/wxPrintDialog.py +++ b/wxPython/demo/wxPrintDialog.py @@ -5,9 +5,9 @@ from wxPython.wx import * def runTest(frame, nb, log): data = wxPrintDialogData() - data.EnablePrintToFile(true) - data.EnablePageNumbers(true) - data.EnableSelection(true) + data.EnablePrintToFile(True) + data.EnablePageNumbers(True) + data.EnableSelection(True) dlg = wxPrintDialog(frame, data) if dlg.ShowModal() == wxID_OK: log.WriteText('\n')