From: Steve Lamerton Date: Thu, 19 May 2011 20:43:45 +0000 (+0000) Subject: Don't pass raw urls to logging functions in the wxWebView sample as they can contain... X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/a427ca2713e5bd14a59cc7bfd8a501352383909c Don't pass raw urls to logging functions in the wxWebView sample as they can contain percent characters which then cause format string errors. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/SOC2011_WEBVIEW@67767 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/samples/web/web.cpp b/samples/web/web.cpp index c22ebaa6e1..a3194bb8b4 100644 --- a/samples/web/web.cpp +++ b/samples/web/web.cpp @@ -281,7 +281,7 @@ public: frame->Layout(); } - wxLogMessage("Navigation request to '" + evt.GetHref() + "' (target='" + + wxLogMessage("%s", "Navigation request to '" + evt.GetHref() + "' (target='" + evt.GetTarget() + "')"); wxASSERT(m_browser_ctrl->IsBusy()); @@ -301,7 +301,7 @@ public: */ void onNavigationComplete(wxWebNavigationEvent& evt) { - wxLogMessage("Navigation complete; url='" + evt.GetHref() + "'"); + wxLogMessage("%s", "Navigation complete; url='" + evt.GetHref() + "'"); updateState(); } @@ -310,7 +310,7 @@ public: */ void onDocumentLoaded(wxWebNavigationEvent& evt) { - wxLogMessage("Document loaded; url='" + evt.GetHref() + "'"); + wxLogMessage("%s", "Document loaded; url='" + evt.GetHref() + "'"); updateState(); m_browser_ctrl->GetZoom();