| 1545 | } |
| 1546 | |
| 1547 | UINT PluginList::removeThreadProc(LPVOID param) |
| 1548 | { |
| 1549 | InstallParam *ip = reinterpret_cast<InstallParam*>(param); |
| 1550 | |
| 1551 | ip->pluginList->removePlugins(ip->hMessageBoxParent, |
| 1552 | ip->progressDialog, |
| 1553 | ip->pluginListView, |
| 1554 | ip->cancelToken); |
| 1555 | |
| 1556 | // clean up the parameter |
| 1557 | delete ip; |
| 1558 | |
| 1559 | return 0; |
| 1560 | } |
| 1561 | |
| 1562 | void PluginList::clearPluginList() |
| 1563 | { |
nothing calls this directly
no test coverage detected