missing Init() added to wxMenu(wxCallback) ctors

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5651 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2000-01-25 15:35:55 +00:00
parent eaeb6a3c37
commit 4a539480fb
4 changed files with 8 additions and 0 deletions

View File

@ -83,6 +83,8 @@ public:
wxMenu(const wxString& title, const wxFunction func)
: wxMenuBase(title)
{
Init();
Callback(func);
}

View File

@ -83,6 +83,8 @@ public:
wxMenu(const wxString& title, const wxFunction func)
: wxMenuBase(title)
{
Init();
Callback(func);
}

View File

@ -50,6 +50,8 @@ public:
wxMenu(const wxString& title, const wxFunction func)
: wxMenuBase(title)
{
Init();
Callback(func);
}

View File

@ -54,6 +54,8 @@ public:
wxMenu(const wxString& title, const wxFunction func)
: wxMenuBase(title)
{
Init();
Callback(func);
}
#endif // wxUSE_MENU_CALLBACK