1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fixed a URL in the demo app

This commit is contained in:
jules 2016-03-02 12:55:24 +00:00
parent 5840ba97ad
commit 7c1d3e3074

View file

@ -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