mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-23 01:44:22 +00:00
Used MemoryBlock::isEmpty() in a few places
This commit is contained in:
parent
b2b1685ca6
commit
0fc1ede50f
12 changed files with 20 additions and 20 deletions
|
|
@ -681,7 +681,7 @@ void WebBrowserComponent::reloadLastURL()
|
|||
{
|
||||
if (lastURL.isNotEmpty())
|
||||
{
|
||||
goToURL (lastURL, &lastHeaders, lastPostData.getSize() == 0 ? nullptr : &lastPostData);
|
||||
goToURL (lastURL, &lastHeaders, lastPostData.isEmpty() ? nullptr : &lastPostData);
|
||||
lastURL.clear();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue