| 107 | } |
| 108 | |
| 109 | SStringT SListBox::GetText(int nIndex,BOOL bRawText) const |
| 110 | { |
| 111 | if (nIndex < 0 || nIndex >= GetCount()) |
| 112 | return SStringT(); |
| 113 | |
| 114 | return m_arrItems[nIndex]->strText.GetText(bRawText); |
| 115 | } |
| 116 | |
| 117 | |
| 118 | int SListBox::GetItemHeight(int nIndex) const |
no test coverage detected