MCPcopy Create free account
hub / github.com/cinience/RedisStudio / NavigateComplete2

Method NavigateComplete2

DuiLib/Control/UIWebBrowser.cpp:202–218  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

200}
201
202void DuiLib::CWebBrowserUI::NavigateComplete2( IDispatch *pDisp,VARIANT *&url )
203{
204 CComPtr<IDispatch> spDoc;
205 m_pWebBrowser2->get_Document(&spDoc);
206
207 if (spDoc)
208 {
209 CComQIPtr<ICustomDoc, &IID_ICustomDoc> spCustomDoc(spDoc);
210 if (spCustomDoc)
211 spCustomDoc->SetUIHandler(this);
212 }
213
214 if (m_pWebBrowserEventHandler)
215 {
216 m_pWebBrowserEventHandler->NavigateComplete2(pDisp,url);
217 }
218}
219
220void DuiLib::CWebBrowserUI::ProgressChange( LONG nProgress, LONG nProgressMax )
221{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected