From: Steve Lamerton Date: Tue, 13 Sep 2011 19:39:38 +0000 (+0000) Subject: Correct a typo in the wxWebView tests. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/6edb39127bd8694809ee5348592c0ab5e1f6b70a Correct a typo in the wxWebView tests. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@69078 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/tests/controls/webtest.cpp b/tests/controls/webtest.cpp index 0d6bbc5347..7083d063bb 100644 --- a/tests/controls/webtest.cpp +++ b/tests/controls/webtest.cpp @@ -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(); } }