public:
wxListView() { }
wxListView( wxWindow *parent,
- wxWindowID winid = -1,
+ wxWindowID winid = wxID_ANY,
const wxPoint& pos = wxDefaultPosition,
const wxSize& size = wxDefaultSize,
long style = wxLC_REPORT,
// ---------------------
// [de]select an item
- void Select(long n, bool on = TRUE)
+ void Select(long n, bool on = true)
{
SetItemState(n, on ? wxLIST_STATE_SELECTED : 0, wxLIST_STATE_SELECTED);
}
long GetFirstSelected() const
{ return GetNextSelected(-1); }
- // return TRUE if the item is selected
+ // return true if the item is selected
bool IsSelected(long index)
{ return GetItemState(index, wxLIST_STATE_SELECTED) != 0; }