Browse Source

Fixed error in variable name

tags/2021-05-28
tpoole 9 years ago
parent
commit
f93b174d93
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      modules/juce_core/native/juce_mac_Network.mm

+ 2
- 2
modules/juce_core/native/juce_mac_Network.mm View File

@@ -478,7 +478,7 @@ struct BackgroundDownloadTask : public URL::DownloadTask
listener->progress (this, downloaded, contentLength); listener->progress (this, downloaded, contentLength);
} }
listener->didComplete (this, !error);
listener->finished (this, !error);
} }
} }
@@ -511,7 +511,7 @@ struct BackgroundDownloadTask : public URL::DownloadTask
finished = true; finished = true;
if (listener != nullptr) if (listener != nullptr)
listener->didComplete (this, ! error);
listener->finished (this, ! error);
} }
} }


Loading…
Cancel
Save