X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d62228a6450c566434fbcbcff00fa571fdbbdb2a..2ea24d9f47002ce2965b6c782849f2f9b776c3de:/include/wx/listctrl.h?ds=sidebyside diff --git a/include/wx/listctrl.h b/include/wx/listctrl.h index 31b86aac5a..2108abc01c 100644 --- a/include/wx/listctrl.h +++ b/include/wx/listctrl.h @@ -59,7 +59,7 @@ enum wxLIST_NEXT_ALL, // Searches for subsequent item by index wxLIST_NEXT_BELOW, // Searches for an item below the specified item wxLIST_NEXT_LEFT, // Searches for an item to the left of the specified item - wxLIST_NEXT_RIGHT, // Searches for an item to the right of the specified item + wxLIST_NEXT_RIGHT // Searches for an item to the right of the specified item }; // Alignment flags for Arrange (MSW only except wxLIST_ALIGN_LEFT) @@ -148,6 +148,10 @@ public: wxListItem(); ~wxListItem() { delete m_attr; } + // resetting + void Clear(); + void ClearAttributes(); + // setters void SetMask(long mask) { m_mask = mask; } void SetId(long id) { m_itemId = id; } @@ -280,9 +284,7 @@ public: inline long GetMask() { return m_item.m_mask; } inline const wxListItem &GetItem() const { return m_item; } -#ifndef __WXMSW__ void CopyObject(wxObject& object_dest) const; -#endif private: DECLARE_DYNAMIC_CLASS(wxListEvent)