- wxMenuItem(wxMenu *pParentMenu = NULL, int id = ID_SEPARATOR,
- const wxString& strName = "", const wxString& wxHelp = "",
- bool bCheckable = FALSE, wxMenu *pSubMenu = NULL);
+ //
+ wxMenuItem( wxMenu* pParentMenu = NULL
+ ,int nId = wxID_SEPARATOR
+ ,const wxString& rStrName = ""
+ ,const wxString& rWxHelp = ""
+ ,wxItemKind eKind = wxITEM_NORMAL
+ ,wxMenu* pSubMenu = NULL
+ );
+
+ //
+ // Depricated, do not use in new code
+ //
+ wxMenuItem( wxMenu* pParentMenu
+ ,int vId
+ ,const wxString& rsText
+ ,const wxString& rsHelp
+ ,bool bIsCheckable
+ ,wxMenu* pSubMenu = (wxMenu *)NULL
+ );