| 1489 | } |
| 1490 | |
| 1491 | std::wstring CLogView::GetItemWText(int item, int subItem) const |
| 1492 | { |
| 1493 | CComBSTR bstr; |
| 1494 | GetItemText(item, subItem, bstr.m_str); |
| 1495 | return std::wstring(bstr.m_str, bstr.m_str + bstr.Length()); |
| 1496 | } |
| 1497 | |
| 1498 | std::string CLogView::GetItemText(int item) const |
| 1499 | { |
nothing calls this directly
no test coverage detected