Fix some bad parameter names, add missing methods, add missing classes, etc.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@66210 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2010-11-19 07:57:19 +00:00
parent b702a83386
commit a90e69f70f
4 changed files with 198 additions and 19 deletions

View File

@@ -39,7 +39,7 @@ public:
@return The value of the first ID in the sequence, or wxID_NONE.
*/
static wxWindowID ReserveControlId(int count = 1);
static wxWindowID ReserveId(int count = 1);
/**
Called directly by wxWindow::UnreserveControlId(), this function will
@@ -54,6 +54,6 @@ public:
@return The value of the first ID in the sequence, or wxID_NONE.
*/
static wxWindowID UnreserveControlId(wxWindowID id, int count = 1);
static void UnreserveId(wxWindowID id, int count = 1);
};