Browse Source

Fixed some misnamed Doxygen parameters

tags/2021-05-28
tpoole 9 years ago
parent
commit
3fa62bcaf7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_core/network/juce_WebInputStream.h

+ 1
- 1
modules/juce_core/network/juce_WebInputStream.h View File

@@ -178,7 +178,7 @@ class JUCE_API WebInputStream : public InputStream
@returns the actual number of bytes that were read, which may be less than
maxBytesToRead if the stream is exhausted before it gets that far
*/
int read (void* buffer, int bytesToRead) override;
int read (void* destBuffer, int maxBytesToRead) override;
/** Returns true if the stream has no more data to read. */
bool isExhausted() override;


Loading…
Cancel
Save