if ( !CreateControl(parent, id, pos, size, style, validator, name) )
return false;
- if ( !MSWCreateControl(WC_LISTVIEW, _T(""), pos, size) )
+ if ( !MSWCreateControl(WC_LISTVIEW, wxEmptyString, pos, size) )
return false;
// explicitly say that we want to use Unicode because otherwise we get ANSI
// Deletes all items
bool wxListCtrl::DeleteAllItems()
{
- m_count=0;
return ListView_DeleteAllItems(GetHwnd()) != 0;
}