Changes needed for new RTL methods, and also various other updates to

wx CVS.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41012 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-09-04 23:52:47 +00:00
parent 746b24a09d
commit e81b607b43
10 changed files with 140 additions and 26 deletions

View File

@@ -33,7 +33,7 @@ public:
// append any kind of item (normal/check/radio/separator)
wxMenuItem* Append(int id,
const wxString& text,
const wxString& text = wxPyEmptyString,
const wxString& help = wxPyEmptyString,
wxItemKind kind = wxITEM_NORMAL);
@@ -76,7 +76,7 @@ public:
// insert an item before given position
wxMenuItem* Insert(size_t pos,
int id,
const wxString& text,
const wxString& text = wxPyEmptyString,
const wxString& help = wxPyEmptyString,
wxItemKind kind = wxITEM_NORMAL);
@@ -104,7 +104,7 @@ public:
// prepend any item to the menu
wxMenuItem* Prepend(int id,
const wxString& text,
const wxString& text = wxPyEmptyString,
const wxString& help = wxPyEmptyString,
wxItemKind kind = wxITEM_NORMAL);