| 836 | } |
| 837 | |
| 838 | void dialog_array::DrawItem(LPDRAWITEMSTRUCT lpDrawItemStruct) |
| 839 | { |
| 840 | CStatic ctrl = lpDrawItemStruct->hwndItem; |
| 841 | ATL::CString str; |
| 842 | ctrl.GetWindowTextW(str); |
| 843 | DrawText( |
| 844 | lpDrawItemStruct->hDC, str, -1, |
| 845 | &lpDrawItemStruct->rcItem, DT_WORDBREAK | DT_END_ELLIPSIS | DT_CENTER | DT_EDITCONTROL | DT_NOPREFIX); |
| 846 | } |
nothing calls this directly
no outgoing calls
no test coverage detected