// Purpose: interface of wxIdManager
// Author: wxWidgets team
// RCS-ID: $Id$
-// Licence: wxWindows license
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
/**
@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
@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);
};