| 410 | |
| 411 | #ifdef ALLOW_OVERRIDE_XML_URL |
| 412 | void doReloadXml() |
| 413 | { |
| 414 | if (NULL == g_pluginList) |
| 415 | { |
| 416 | g_pluginList = new PluginList(); |
| 417 | g_pluginList->init(&nppData); |
| 418 | pluginManagerDlg.setPluginList(g_pluginList); |
| 419 | } |
| 420 | |
| 421 | g_pluginList->downloadList(); |
| 422 | |
| 423 | pluginManagerDlg.refreshLists(); |
| 424 | ::MessageBox(nppData._nppHandle, _T("XML Refreshed"), _T("Plugin Manager"), MB_OK |MB_ICONINFORMATION); |
| 425 | |
| 426 | } |
| 427 | #endif |
nothing calls this directly
no test coverage detected