mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-20 01:14:20 +00:00
Fixed some typos.
This commit is contained in:
parent
00f317a717
commit
28e4473a6b
6 changed files with 8 additions and 8 deletions
|
|
@ -65,7 +65,7 @@ struct JUCE_API AudioSourceChannelInfo
|
|||
Only the samples specified by the startSample and numSamples members of this structure
|
||||
should be affected by the call.
|
||||
|
||||
The contents of the buffer when it is passed to the the AudioSource::getNextAudioBlock()
|
||||
The contents of the buffer when it is passed to the AudioSource::getNextAudioBlock()
|
||||
method can be treated as the input if the source is performing some kind of filter operation,
|
||||
but should be cleared if this is not the case - the clearActiveBufferRegion() is
|
||||
a handy way of doing this.
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@ public:
|
|||
/** True if the plug-in is part of a multi-type container, e.g. a VST Shell. */
|
||||
bool hasSharedContainer;
|
||||
|
||||
/** Returns true if the two descriptions refer the the same plug-in.
|
||||
/** Returns true if the two descriptions refer to the same plug-in.
|
||||
|
||||
This isn't quite as simple as them just having the same file (because of
|
||||
shell plug-ins).
|
||||
|
|
|
|||
|
|
@ -76,14 +76,14 @@ public:
|
|||
|
||||
/** Changes or adds a named value.
|
||||
@returns true if a value was changed or added; false if the
|
||||
value was already set the the value passed-in.
|
||||
value was already set the value passed-in.
|
||||
*/
|
||||
bool set (Identifier name, const var& newValue);
|
||||
|
||||
#if JUCE_COMPILER_SUPPORTS_MOVE_SEMANTICS
|
||||
/** Changes or adds a named value.
|
||||
@returns true if a value was changed or added; false if the
|
||||
value was already set the the value passed-in.
|
||||
value was already set the value passed-in.
|
||||
*/
|
||||
bool set (Identifier name, var&& newValue);
|
||||
#endif
|
||||
|
|
|
|||
|
|
@ -64,7 +64,7 @@
|
|||
//=============================================================================
|
||||
/** Config: JUCE_LOG_ASSERTIONS
|
||||
|
||||
If this flag is enabled, the the jassert and jassertfalse macros will always use Logger::writeToLog()
|
||||
If this flag is enabled, the jassert and jassertfalse macros will always use Logger::writeToLog()
|
||||
to write a message when an assertion happens.
|
||||
|
||||
Enabling it will also leave this turned on in release builds. When it's disabled,
|
||||
|
|
|
|||
|
|
@ -226,7 +226,7 @@ public:
|
|||
//==============================================================================
|
||||
/** Sets the string that will be written to the stream when the writeNewLine()
|
||||
method is called.
|
||||
By default this will be set the the value of NewLine::getDefault().
|
||||
By default this will be set the value of NewLine::getDefault().
|
||||
*/
|
||||
void setNewLineString (const String& newLineString);
|
||||
|
||||
|
|
|
|||
|
|
@ -326,12 +326,12 @@ public:
|
|||
void getVisibleArea (RectangleList<int>& result, bool includeSiblings) const;
|
||||
|
||||
//==============================================================================
|
||||
/** Returns this component's x coordinate relative the the screen's top-left origin.
|
||||
/** Returns this component's x coordinate relative the screen's top-left origin.
|
||||
@see getX, localPointToGlobal
|
||||
*/
|
||||
int getScreenX() const;
|
||||
|
||||
/** Returns this component's y coordinate relative the the screen's top-left origin.
|
||||
/** Returns this component's y coordinate relative the screen's top-left origin.
|
||||
@see getY, localPointToGlobal
|
||||
*/
|
||||
int getScreenY() const;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue