Changeset 56230
- Timestamp:
- 10/11/08 08:54:14 (6 weeks ago)
- Files:
-
- 1 modified
-
wxWidgets/trunk/src/generic/listctrl.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wxWidgets/trunk/src/generic/listctrl.cpp
r55535 r56230 5046 5046 m_headerHeight = 0; 5047 5047 5048 if ( !(style & wxLC_MASK_TYPE) ) 5049 { 5050 style = style | wxLC_LIST; 5051 } 5048 // just like in other ports, an assert will fail if the user doesn't give any type style: 5049 wxASSERT_MSG( !(style & wxLC_MASK_TYPE), 5050 _T("wxListCtrl style should have exactly one mode bit set") ); 5052 5051 5053 5052 if ( !wxControl::Create( parent, id, pos, size, style, validator, name ) )
