further ifacecheck fixes (now only 3.3% of documented methods have a wrong signature\!)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56756 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-11-13 21:32:53 +00:00
parent a70ab3b804
commit 11e3af6e7e
34 changed files with 120 additions and 130 deletions

View File

@@ -1079,7 +1079,7 @@ public:
@see Remove()
*/
bool Detach(size_t index);
virtual bool Detach(int index);
/**
Tell the sizer to resize the @a window so that its client area matches the
@@ -1374,7 +1374,7 @@ public:
@return @true if the child item was found and removed, @false otherwise.
*/
bool Remove(wxWindow* window);
virtual bool Remove(wxWindow* window);
/**
Removes a sizer child from the sizer and destroys it.
@@ -1403,7 +1403,7 @@ public:
@return @true if the child item was found and removed, @false otherwise.
*/
bool Remove(size_t index);
virtual bool Remove(int index);
/**
Detaches the given @a oldwin from the sizer and replaces it with the
@@ -1473,7 +1473,7 @@ public:
@see wxSizerItem::SetMinSize()
*/
void SetItemMinSize(wxWindow* window, int width, int height);
bool SetItemMinSize(wxWindow* window, int width, int height);
/**
Set an item's minimum size by window, sizer, or position.
@@ -1484,7 +1484,7 @@ public:
@see wxSizerItem::SetMinSize()
*/
void SetItemMinSize(wxSizer* sizer, int width, int height);
bool SetItemMinSize(wxSizer* sizer, int width, int height);
/**
Set an item's minimum size by window, sizer, or position.
@@ -1495,7 +1495,7 @@ public:
@see wxSizerItem::SetMinSize()
*/
void SetItemMinSize(size_t index, int width, int height);
bool SetItemMinSize(size_t index, int width, int height);
/**
Call this to give the sizer a minimal size.
@@ -1678,7 +1678,7 @@ public:
/**
This constructor creates a new static box with the given label and parent window.
*/
wxStaticBoxSizer(int orient, wxWindow parent,
wxStaticBoxSizer(int orient, wxWindow *parent,
const wxString& label = wxEmptyString);
/**