From 7c1d3e30749adf8f5f1ff72efd15a41e0371f017 Mon Sep 17 00:00:00 2001 From: jules Date: Wed, 2 Mar 2016 12:55:24 +0000 Subject: [PATCH] Fixed a URL in the demo app --- examples/Demo/Source/Demos/WebBrowserDemo.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/Demo/Source/Demos/WebBrowserDemo.cpp b/examples/Demo/Source/Demos/WebBrowserDemo.cpp index c41f20dfd7..78341e5742 100644 --- a/examples/Demo/Source/Demos/WebBrowserDemo.cpp +++ b/examples/Demo/Source/Demos/WebBrowserDemo.cpp @@ -80,7 +80,7 @@ public: // Create an address box.. addAndMakeVisible (addressTextBox); - addressTextBox.setTextToShowWhenEmpty ("Enter a web address, e.g. http://www.juce.com", Colours::grey); + addressTextBox.setTextToShowWhenEmpty ("Enter a web address, e.g. https://www.juce.com", Colours::grey); addressTextBox.addListener (this); // create the actual browser component @@ -95,7 +95,7 @@ public: forwardButton.addListener (this); // send the browser to a start page.. - webView->goToURL ("http://www.juce.com"); + webView->goToURL ("https://www.juce.com"); } void paint (Graphics& g) override