mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Improved some MemoryBlock comments and gave the class a reset() method.
This commit is contained in:
parent
0de3ec9a51
commit
5ede2da44b
10 changed files with 38 additions and 26 deletions
|
|
@ -41,17 +41,17 @@ void WebBrowserComponent::goToURL (const String& url,
|
|||
{
|
||||
lastURL = url;
|
||||
|
||||
lastHeaders.clear();
|
||||
if (headers != nullptr)
|
||||
lastHeaders = *headers;
|
||||
else
|
||||
lastHeaders.clear();
|
||||
|
||||
lastPostData.setSize (0);
|
||||
if (postData != nullptr)
|
||||
lastPostData = *postData;
|
||||
else
|
||||
lastPostData.reset();
|
||||
|
||||
blankPageShown = false;
|
||||
|
||||
|
||||
}
|
||||
|
||||
void WebBrowserComponent::stop()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue