| 37 | } |
| 38 | |
| 39 | void PluginListView::init(HWND hListView, HWND hDescription, int nVersionColumns, VERSIONCOLUMN columns[], bool displayUpdateDesc) |
| 40 | { |
| 41 | _hListView = hListView; |
| 42 | _hDescription = hDescription; |
| 43 | _nVersionColumns = nVersionColumns; |
| 44 | _displayUpdateDesc = displayUpdateDesc; |
| 45 | |
| 46 | _columns = new VERSIONCOLUMN[nVersionColumns]; |
| 47 | |
| 48 | for(int index = 0; index < nVersionColumns; index++) |
| 49 | _columns[index] = columns[index]; |
| 50 | |
| 51 | initColumns(); |
| 52 | } |
| 53 | |
| 54 | LRESULT PluginListView::notify(WPARAM /*wParam*/, LPARAM lParam) |
| 55 | { |
nothing calls this directly
no outgoing calls
no test coverage detected