From 6d460f765defd7b4af3a681501a110d454881e80 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Tue, 8 Apr 2003 22:24:14 +0000 Subject: [PATCH] Turn off all border styles for the inner window git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20077 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 02a2580a92..51af844c67 100644 --- a/src/generic/listctrl.cpp +++ b/src/generic/listctrl.cpp @@ -4717,7 +4717,7 @@ bool wxGenericListCtrl::Create(wxWindow *parent, return FALSE; // don't create the inner window with the border - style &= ~wxSUNKEN_BORDER; + style &= ~wxBORDER_MASK; m_mainWin = new wxListMainWindow( this, -1, wxPoint(0,0), size, style );