From 1724915f18ca8887521e28cbfdaa05a7fdaa3c04 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Fri, 18 Aug 2000 09:42:43 +0000 Subject: [PATCH] Bug fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@8122 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- contrib/src/gizmos/splittree.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/src/gizmos/splittree.cpp b/contrib/src/gizmos/splittree.cpp index 83ccea4ec8..6d307776fc 100644 --- a/contrib/src/gizmos/splittree.cpp +++ b/contrib/src/gizmos/splittree.cpp @@ -210,7 +210,7 @@ Plus, wxGenericTreeCtrl::OnPaint will reset the device origin. // Assumption: wxGenericTreeCtrl will adjust the scrollbars automatically, // since it'll call SetScrollbars and we've defined this to Do The Right Thing. - if (!IsKindOf(CLASSINFO(wxGenericTreeCtrl))) + if (IsKindOf(CLASSINFO(wxGenericTreeCtrl))) return; wxScrolledWindow* scrolledWindow = GetScrolledWindow(); -- 2.47.2