guarding for scrollbar use

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61378 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Csomor
2009-07-10 17:38:36 +00:00
parent 4bea628d00
commit 9504069ea6

View File

@@ -474,7 +474,11 @@ static bool wxHasRealChildren(const wxWindowBase* win)
node = node->GetNext() ) node = node->GetNext() )
{ {
wxWindow *win = node->GetData(); wxWindow *win = node->GetData();
if ( !win->IsTopLevel() && win->IsShown() && !win->IsKindOf(CLASSINFO(wxScrollBar))) if ( !win->IsTopLevel() && win->IsShown()
#if wxUSE_SCROLLBAR
&& !win->IsKindOf(CLASSINFO(wxScrollBar))
#endif
)
realChildCount ++; realChildCount ++;
} }
return (realChildCount > 0); return (realChildCount > 0);