From 07acbd34a5c7ff8bba19348e780eb996627dc606 Mon Sep 17 00:00:00 2001 From: Paul Cornett Date: Sat, 29 Oct 2011 04:49:38 +0000 Subject: [PATCH] parenthesize bitwise operator in logical expression git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69572 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/generic/listctrl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/generic/listctrl.cpp b/src/generic/listctrl.cpp index 09354910b6..9faacbc8c8 100644 --- a/src/generic/listctrl.cpp +++ b/src/generic/listctrl.cpp @@ -4027,7 +4027,7 @@ void wxListMainWindow::InsertItem( wxListItem &item ) wxListLineData *line = new wxListLineData(this); line->SetItem( item.m_col, item ); - if ( item.m_mask & wxLIST_MASK_IMAGE && item.GetImage() != -1) + if ((item.m_mask & wxLIST_MASK_IMAGE) && item.GetImage() != -1) { // Reset the buffered height if it's not big enough for the new image. if (m_small_image_list) -- 2.45.2