| 3076 | */ |
| 3077 | |
| 3078 | TItem* GetItem(size_t nItem) const |
| 3079 | { |
| 3080 | ATLASSERT(nItem < m_Items.GetCount()); |
| 3081 | if( nItem >= m_Items.GetCount() ) |
| 3082 | { |
| 3083 | return NULL; |
| 3084 | } |
| 3085 | |
| 3086 | return m_Items[nItem]; |
| 3087 | } |
| 3088 | |
| 3089 | int SetCurSel(int nItem, bool bNotify = true) |
| 3090 | { |