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:
parent
5840ba97ad
commit
7c1d3e3074
1 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue