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.
This commit is contained in:
Vadim Zeitlin 2017-10-22 22:15:34 +02:00
parent b82af43361
commit 49401c960c

View File

@ -66,7 +66,7 @@ class WebApp : public wxApp
{
public:
WebApp() :
m_url("http://www.wxwidgets.org")
m_url("https://www.wxwidgets.org")
{
}