From 1934a64e10df502a7930e97767e213e235fe551b Mon Sep 17 00:00:00 2001 From: Kevin Ollivier Date: Fri, 10 Nov 2006 20:55:45 +0000 Subject: [PATCH] Fix typo with adding wxNO_BORDER to the native control. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43291 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/mac/carbon/listctrl_mac.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mac/carbon/listctrl_mac.cpp b/src/mac/carbon/listctrl_mac.cpp index 5450de5164..a43925527a 100644 --- a/src/mac/carbon/listctrl_mac.cpp +++ b/src/mac/carbon/listctrl_mac.cpp @@ -627,7 +627,7 @@ bool wxListCtrl::Create(wxWindow *parent, { m_macIsUserPane = true; - if ( !wxWindow::Create(parent, id, pos, size, style & wxNO_BORDER, name) ) + if ( !wxWindow::Create(parent, id, pos, size, style | wxNO_BORDER, name) ) return false; // since the generic control is a child, make sure we position it at 0, 0