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:
@@ -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);
|
||||||
|
Reference in New Issue
Block a user