don't look for notebooks beyond first top level parent in our hierarchy

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30938 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2004-12-12 00:09:40 +00:00
parent e96ec686d8
commit ab022a5c7a

View File

@ -359,6 +359,12 @@ WXHBRUSH wxControl::MSWControlColor(WXHDC pDC)
{
for ( wxWindow *win = this; win; win = win->GetParent() )
{
if ( win->IsTopLevel() )
{
// don't go beyond the first top level parent
break;
}
wxNotebook *nbook = wxDynamicCast(win, wxNotebook);
if ( nbook )
{