]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/listctrl.cpp
add the possibility to cancel drag-resizing by pressing Esc
[wxWidgets.git] / src / generic / listctrl.cpp
index 9d6d3c50e88a750921edbc80715f7460fc154b88..c42fded26c26be02ad3ffdb22c60a67042aeb2b8 100644 (file)
@@ -5045,10 +5045,9 @@ bool wxGenericListCtrl::Create(wxWindow *parent,
 
     m_headerHeight = 0;
 
-    if ( !(style & wxLC_MASK_TYPE) )
-    {
-        style = style | wxLC_LIST;
-    }
+    // just like in other ports, an assert will fail if the user doesn't give any type style:
+    wxASSERT_MSG( (style & wxLC_MASK_TYPE),
+                  _T("wxListCtrl style should have exactly one mode bit set") );
 
     if ( !wxControl::Create( parent, id, pos, size, style, validator, name ) )
         return false;