made FindWindow() member functions const (this makes it possible to use XRCCTRL() in const methods)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31290 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -570,8 +570,8 @@ public:
|
||||
|
||||
// find window among the descendants of this one either by id or by
|
||||
// name (return NULL if not found)
|
||||
wxWindow *FindWindow( long winid );
|
||||
wxWindow *FindWindow( const wxString& name );
|
||||
wxWindow *FindWindow(long winid) const;
|
||||
wxWindow *FindWindow(const wxString& name) const;
|
||||
|
||||
// Find a window among any window (all return NULL if not found)
|
||||
static wxWindow *FindWindowById( long winid, const wxWindow *parent = NULL );
|
||||
|
Reference in New Issue
Block a user