added wxID_ANY default value for the id parameter of Create() for consistency with the ctor (request 1481791)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40282 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2006-07-24 17:44:46 +00:00
parent b8b37cedd3
commit b9eb3d9de6
2 changed files with 4 additions and 3 deletions

View File

@@ -58,7 +58,8 @@ public:
}
// Pseudo ctor
bool Create(wxWindow *parent, wxWindowID winid,
bool Create(wxWindow *parent,
wxWindowID winid = wxID_ANY,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = wxTAB_TRAVERSAL | wxNO_BORDER,