mshtml: Don't skip history notification for about: URLs.

This commit is contained in:
Jacek Caban 2012-11-12 12:57:58 +01:00 committed by Alexandre Julliard
parent 7ac09e721c
commit 8f1bb21f35
1 changed files with 0 additions and 9 deletions

View File

@ -80,15 +80,6 @@ static void notify_travellog_update(HTMLDocumentObj *doc)
if(!doc->is_webbrowser)
return;
/* Don't notify if we were in about: page */
if(doc->basedoc.window->uri) {
DWORD scheme;
hres = IUri_GetScheme(doc->basedoc.window->uri, &scheme);
if(SUCCEEDED(hres) && scheme == URL_SCHEME_ABOUT)
return;
}
hres = IOleClientSite_QueryInterface(doc->client, &IID_IOleCommandTarget, (void**)&cmdtrg);
if(SUCCEEDED(hres)) {
VARIANT vin;