X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1b62f00d8e3ec5437ab780cb3d73d299cc61e20c..40f7145ca55ccf1b197e70acf79bbd4aa5d85145:/wxPython/demo/wxTextEntryDialog.py?ds=sidebyside diff --git a/wxPython/demo/wxTextEntryDialog.py b/wxPython/demo/wxTextEntryDialog.py index b0049d6506..af93b747f3 100644 --- a/wxPython/demo/wxTextEntryDialog.py +++ b/wxPython/demo/wxTextEntryDialog.py @@ -6,7 +6,7 @@ from wxPython.wx import * def runTest(frame, nb, log): dlg = wxTextEntryDialog(frame, 'What is your favorite programming language?', 'Duh??', 'Python') - dlg.SetValue("Python is the best!") #### this doesn't work? + dlg.SetValue("Python is the best!") if dlg.ShowModal() == wxID_OK: log.WriteText('You entered: %s\n' % dlg.GetValue()) dlg.Destroy()