renamed wxDynamicThisCast to wxDynamicCastThis, removed 1st parameter, and documented

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@11078 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2001-07-17 08:25:43 +00:00
parent 8e673075f6
commit f763782968
4 changed files with 41 additions and 15 deletions

View File

@@ -194,7 +194,7 @@ END_EVENT_TABLE()
wxWindow *wxWindowMSW::FindItem(long id) const
{
#if wxUSE_CONTROLS
wxControl *item = wxDynamicThisCast(this, wxControl);
wxControl *item = wxDynamicCastThis(wxControl);
if ( item )
{
// is it we or one of our "internal" children?
@@ -354,6 +354,17 @@ bool wxWindowMSW::Create(wxWindow *parent,
{
wxCHECK_MSG( parent, FALSE, wxT("can't create wxWindow without parent") );
#if wxUSE_STATBOX
// wxGTK doesn't allow to create controls with static box as the parent so
// this will result in a crash when the program is ported to wxGTK - warn
// about it
//
// the correct solution is to create the controls as siblings of the
// static box
wxASSERT_MSG( !wxDynamicCastThis(wxStaticBox),
_T("wxStaticBox can't be used as a window parent!") );
#endif // wxUSE_STATBOX
if ( !CreateBase(parent, id, pos, size, style, wxDefaultValidator, name) )
return FALSE;
@@ -1777,7 +1788,7 @@ bool wxWindowMSW::MSWProcessMessage(WXMSG* pMsg)
#if wxUSE_BUTTON
else
{
wxPanel *panel = wxDynamicThisCast(this, wxPanel);
wxPanel *panel = wxDynamicCastThis(wxPanel);
wxButton *btn = NULL;
if ( panel )
{