From: Václav Slavík Date: Tue, 9 Apr 2002 22:44:38 +0000 (+0000) Subject: fixed incorrect wxCHECK (was a wrong negation before) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e961638138e832e7e9fc568d0aa7b32a2677bc3a fixed incorrect wxCHECK (was a wrong negation before) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15064 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/msw/treectrl.cpp b/src/msw/treectrl.cpp index 049f6e0e1f..5628353b4b 100644 --- a/src/msw/treectrl.cpp +++ b/src/msw/treectrl.cpp @@ -1621,7 +1621,7 @@ void wxTreeCtrl::DoExpand(const wxTreeItemId& item, int flag) wxT("Unknown flag in wxTreeCtrl::DoExpand") ); // A hidden root can be neither expanded nor collapsed. - wxCHECK_RET( (HITEM(item) != TVI_ROOT) || (m_windowStyle & wxTR_HIDE_ROOT), + wxCHECK_RET( !(m_windowStyle & wxTR_HIDE_ROOT) || (HITEM(item) != TVI_ROOT), wxT("Can't expand/collapse hidden root node!") ) // TreeView_Expand doesn't send TVN_ITEMEXPAND(ING) messages, so we must