From 49401c960cd315c82d5391a6d66bee776bc03cca Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 22 Oct 2017 22:15:34 +0200 Subject: [PATCH] Use HTTPS by default in the webview sample This allows the sample to load the initial page when built using macOS 10.11 or later SDK which enables "app transport security" (ATS), which prevents HTTP connections by default. --- samples/webview/webview.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/webview/webview.cpp b/samples/webview/webview.cpp index a7376f3f92..64e3cf3842 100644 --- a/samples/webview/webview.cpp +++ b/samples/webview/webview.cpp @@ -66,7 +66,7 @@ class WebApp : public wxApp { public: WebApp() : - m_url("http://www.wxwidgets.org") + m_url("https://www.wxwidgets.org") { }