1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00

Improve some documentation

This commit is contained in:
Tom Poole 2022-07-12 15:45:39 +01:00
parent d69ded1cd5
commit cb2efe5d59
4 changed files with 8 additions and 6 deletions

View file

@ -544,7 +544,7 @@ attributes directly to these creation functions, rather than adding them later.
`AAX_ePlugInCategory_NoiseReduction`, `AAX_ePlugInCategory_Dither`,
`AAX_ePlugInCategory_SoundField`, `AAX_ePlugInCategory_HWGenerators`,
`AAX_ePlugInCategory_SWGenerators`, `AAX_ePlugInCategory_WrappedPlugin`,
`AAX_ePlugInCategory_Effect`
`AAX_EPlugInCategory_Effect`
`PLUGINHOST_AU`
- May be either TRUE or FALSE (defaults to FALSE). If TRUE, will add the preprocessor definition

View file

@ -516,9 +516,11 @@ public:
/** Copies a file.
Tries to copy a file to a different location.
If the target file already exists, this will attempt to delete it first, and
will fail if this can't be done.
Tries to copy a file to a different location. If the target file already exists,
this will attempt to delete it first, and will fail if this can't be done.
Note that the target file isn't the directory to put it in, it's the actual
filename that you want the new file to have.
@returns true if the operation succeeds
*/

View file

@ -46,7 +46,7 @@ namespace juce
New code:
RuntimePermissions::request (
RuntimePermissions::audioRecording,
RuntimePermissions::recordAudio,
[this] (bool wasGranted)
{
if (! wasGranted)

View file

@ -50,7 +50,7 @@ namespace juce
"goodbye" = "au revoir"
@endcode
If the strings need to contain a quote character, they can use '\"' instead, and
If the strings need to contain a quote character, they can use `\"` instead, and
if the first non-whitespace character on a line isn't a quote, then it's ignored,
(you can use this to add comments).