| 1337 | } |
| 1338 | |
| 1339 | HRESULT CALLBACK DialogManager::vistaTaskDialogCallbackProc( HWND hwnd, UINT uNotification, WPARAM wParam, LPARAM lParam, LONG_PTR dwRefData ) |
| 1340 | { |
| 1341 | switch (dlgManager->getDialogType()) |
| 1342 | { |
| 1343 | case DialogUpdateGraphicsDrivers: |
| 1344 | if (uNotification == TDN_HYPERLINK_CLICKED) |
| 1345 | { |
| 1346 | QString url = QString::fromUtf16((ushort *) lParam); |
| 1347 | fsManager->launchFileAsync(url); |
| 1348 | } |
| 1349 | break; |
| 1350 | default: |
| 1351 | break; |
| 1352 | } |
| 1353 | return S_OK; |
| 1354 | } |
nothing calls this directly
no test coverage detected