X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f855d4cbf594ab0e36c2bdd15a7e5e05f3baf279..794bcc2dea743ac907b839f54e451847c9ea4b72:/src/common/wincmn.cpp diff --git a/src/common/wincmn.cpp b/src/common/wincmn.cpp index b41f60f7dc..4df298217e 100644 --- a/src/common/wincmn.cpp +++ b/src/common/wincmn.cpp @@ -176,15 +176,6 @@ bool wxWindowBase::CreateBase(wxWindowBase *parent, m_windowId = id == -1 ? NewControlId() : id; SetName(name); - - // if the parent window has wxWS_EX_VALIDATE_RECURSIVELY set, we want to - // have it too - like this it's possible to set it only in the top level - // dialog/frame and all children will inherit it by defult - if ( parent && (parent->GetWindowStyle() & wxWS_EX_VALIDATE_RECURSIVELY) ) - { - style |= wxWS_EX_VALIDATE_RECURSIVELY; - } - SetWindowStyleFlag(style); SetParent(parent); @@ -192,6 +183,14 @@ bool wxWindowBase::CreateBase(wxWindowBase *parent, SetValidator(validator); #endif // wxUSE_VALIDATORS + // if the parent window has wxWS_EX_VALIDATE_RECURSIVELY set, we want to + // have it too - like this it's possible to set it only in the top level + // dialog/frame and all children will inherit it by defult + if ( parent && (parent->GetExtraStyle() & wxWS_EX_VALIDATE_RECURSIVELY) ) + { + SetExtraStyle(wxWS_EX_VALIDATE_RECURSIVELY); + } + return TRUE; } @@ -354,10 +353,11 @@ void wxWindowBase::Centre(int direction) // controls are always centered on their parent because it doesn't make // sense to centre them on the screen - if ( !(direction & wxCENTRE_ON_SCREEN) || wxDynamicCast(this, wxControl) ) + if ( !(direction & wxCENTRE_ON_SCREEN) || !IsTopLevel() ) { - // theo nly chance to get this is to have a wxControl without parent - wxCHECK_RET( parent, wxT("a control must have a parent") ); + // the only chance to get this is to have a not top level window + // without parent which shouldn't happen + wxCHECK_RET( parent, wxT("this window must have a parent") ); // adjust to the parents client area origin wxPoint posParent = parent->ClientToScreen(wxPoint(0, 0));