1
0
Fork 0
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:
jules 2014-03-14 10:15:35 +00:00
parent 0de3ec9a51
commit 5ede2da44b
10 changed files with 38 additions and 26 deletions

View file

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