wxMenu(const wxString& title, const wxFunction func)
: wxMenuBase(title)
{
+ Init();
+
Callback(func);
}
// common code for all constructors:
void Init();
+ // common part of Append and Insert
+ bool GtkAppend(wxMenuItem *item);
+
DECLARE_DYNAMIC_CLASS(wxMenu)
};