X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0004982c831f56c65c390fb617711ff52595c2f3..a70ab3b804b6c363f8bcbed0b4fce94b7fb03612:/interface/wx/dialog.h diff --git a/interface/wx/dialog.h b/interface/wx/dialog.h index f053d885be..0ffb51d883 100644 --- a/interface/wx/dialog.h +++ b/interface/wx/dialog.h @@ -167,7 +167,7 @@ public: const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE, - const wxString& name = "dialogBox"); + const wxString& name = wxDialogNameStr); /** Destructor. Deletes any child windows before deleting the physical @@ -207,7 +207,8 @@ public: */ bool Create(wxWindow* parent, wxWindowID id, const wxString& title, const wxPoint& pos = wxDefaultPosition, - const wxSize& size = wxDefaultSize, long style = 536877056, + const wxSize& size = wxDefaultSize, + long style = wxDEFAULT_DIALOG_STYLE, const wxString& name = wxDialogNameStr); /** @@ -377,7 +378,7 @@ public: Iconize(@false) will bring the window to the front, as does Show(@true). */ - void Iconize(bool iconize); + virtual void Iconize(bool iconize = true); /** Returns @true if the dialog box is iconized. Windows only.