From 345bc273b92bc55c404cfb58d6a74d49d0ecb399 Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Fri, 26 Dec 2014 13:02:09 -0500 Subject: [PATCH] VBOX: Initialize the HTML Document with a blank page --- samples/gfx_html/browserctrl_win.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/gfx_html/browserctrl_win.cpp b/samples/gfx_html/browserctrl_win.cpp index 3b4479e3c5..3f36f6fb3e 100644 --- a/samples/gfx_html/browserctrl_win.cpp +++ b/samples/gfx_html/browserctrl_win.cpp @@ -138,7 +138,7 @@ STDMETHODIMP CHTMLBrowserHost::CreateControlEx( if (SUCCEEDED(hr) && pBrowser != NULL) { CComVariant v; - CComVariant url("http://www.romwnet.org/"); + CComVariant url("about:blank"); spWebBrowser = pBrowser; spWebBrowser->Navigate2(&url, &v, &v, &v, &v);