]> git.saurik.com Git - wxWidgets.git/commitdiff
Turn off all border styles for the inner window
authorRobin Dunn <robin@alldunn.com>
Tue, 8 Apr 2003 22:24:14 +0000 (22:24 +0000)
committerRobin Dunn <robin@alldunn.com>
Tue, 8 Apr 2003 22:24:14 +0000 (22:24 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@20077 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/generic/listctrl.cpp

index 02a2580a927714f543310e134f83ebd557765c11..51af844c6744f9036136eac221334538e9e48315 100644 (file)
@@ -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 );