| 333 | } |
| 334 | |
| 335 | STDMETHODIMP DuiLib::CWebBrowserUI::TranslateAccelerator( LPMSG lpMsg, const GUID* pguidCmdGroup, DWORD nCmdID ) |
| 336 | { |
| 337 | if (m_pWebBrowserEventHandler) |
| 338 | { |
| 339 | return m_pWebBrowserEventHandler->TranslateAccelerator(lpMsg,pguidCmdGroup,nCmdID); |
| 340 | } |
| 341 | return S_FALSE; |
| 342 | } |
| 343 | |
| 344 | LRESULT DuiLib::CWebBrowserUI::TranslateAccelerator( MSG *pMsg ) |
| 345 | { |
nothing calls this directly
no test coverage detected