Correct a typo in the wxWebView tests.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69078 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Steve Lamerton 2011-09-13 19:39:38 +00:00
parent af5fccc140
commit 6edb39127b

View File

@ -88,9 +88,9 @@ void WebTestCase::LoadUrl(int times)
for(int i = 0; i < times; i++)
{
if(i % 2 == 1)
m_browser->LoadUrl("about:blank");
m_browser->LoadURL("about:blank");
else
m_browser->LoadUrl("about:");
m_browser->LoadURL("about:");
wxYield();
}
}