| 41 | } |
| 42 | |
| 43 | void CSubeditList::SetItemBooleanValue(int nItem, int nSubItem, bool value) |
| 44 | { |
| 45 | if (IsWin7_OrGreater()) |
| 46 | SetItemText(nItem, nSubItem, value ? _T("\u2611") : _T("\u2610")); |
| 47 | else |
| 48 | SetItemText(nItem, nSubItem, value ? _T("true") : _T("false")); |
| 49 | } |
| 50 | |
| 51 | bool CSubeditList::GetItemBooleanValue(int nItem, int nSubItem) const |
| 52 | { |
no test coverage detected