| 45 | } |
| 46 | |
| 47 | void |
| 48 | RecentItems::AppendIndex(CString& str, int index) |
| 49 | { |
| 50 | TCHAR buf[16]; |
| 51 | swprintf_s(buf, L"%d", index+1); |
| 52 | str = m_base; |
| 53 | str += buf; |
| 54 | } |
| 55 | |
| 56 | void |
| 57 | RecentItems::Populate(CString *items, LPCTSTR initial_default) |
nothing calls this directly
no outgoing calls
no test coverage detected