From: Vadim Zeitlin Date: Thu, 25 Apr 2013 12:54:50 +0000 (+0000) Subject: Fix compilation-breaking typo in the previous commit. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/bd7c46cfc6775c8222e859fec0d248cd9f5f03d1 Fix compilation-breaking typo in the previous commit. s/LoadUrl/LoadURL/ git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@73853 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/tests/controls/webtest.cpp b/tests/controls/webtest.cpp index d12479621e..533f1da461 100644 --- a/tests/controls/webtest.cpp +++ b/tests/controls/webtest.cpp @@ -80,7 +80,7 @@ void WebTestCase::setUp() m_browser = wxWebView::New(wxTheApp->GetTopWindow(), wxID_ANY); m_loaded = new EventCounter(m_browser, wxEVT_WEBVIEW_LOADED); - m_browser->LoadUrl("about:"); + m_browser->LoadURL("about:"); ENSURE_LOADED; }