Document default value for wxDialog::Show() parameter correctly

It's "true", not "1".

See #18743.
This commit is contained in:
Dummy
2020-04-29 15:46:47 +02:00
committed by Vadim Zeitlin
parent bbc88cedf1
commit b3730a59c6

View File

@@ -581,7 +581,7 @@ public:
otherwise the box is hidden. If @false and the dialog is modal, otherwise the box is hidden. If @false and the dialog is modal,
control is returned to the calling program. control is returned to the calling program.
*/ */
virtual bool Show(bool show = 1); virtual bool Show(bool show = true);
/** /**
Shows an application-modal dialog. Shows an application-modal dialog.