Rename LoadUrl to LoadURL. This corrects the capitalisation as it is an acronym, and brings it into line with GetCurrentURL.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/SOC2011_WEBVIEW@68760 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Steve Lamerton
2011-08-17 10:55:59 +00:00
parent 9af5122202
commit 4d0dddc7ad
9 changed files with 14 additions and 14 deletions

View File

@@ -75,12 +75,12 @@ bool wxWebViewIE::Create(wxWindow* parent,
SetBackgroundStyle(wxBG_STYLE_PAINT);
SetDoubleBuffered(true);
LoadUrl(url);
LoadURL(url);
return true;
}
void wxWebViewIE::LoadUrl(const wxString& url)
void wxWebViewIE::LoadURL(const wxString& url)
{
m_ie.CallMethod("Navigate", (BSTR) url.wc_str(), NULL, NULL, NULL, NULL);
}
@@ -337,7 +337,7 @@ void wxWebViewIE::LoadHistoryItem(wxSharedPtr<wxWebViewHistoryItem> item)
wxASSERT_MSG(pos != static_cast<int>(m_historyList.size()),
"invalid history item");
m_historyLoadingFromList = true;
LoadUrl(item->GetUrl());
LoadURL(item->GetUrl());
m_historyPosition = pos;
}