mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Improve some documentation
This commit is contained in:
parent
d69ded1cd5
commit
cb2efe5d59
4 changed files with 8 additions and 6 deletions
|
|
@ -544,7 +544,7 @@ attributes directly to these creation functions, rather than adding them later.
|
||||||
`AAX_ePlugInCategory_NoiseReduction`, `AAX_ePlugInCategory_Dither`,
|
`AAX_ePlugInCategory_NoiseReduction`, `AAX_ePlugInCategory_Dither`,
|
||||||
`AAX_ePlugInCategory_SoundField`, `AAX_ePlugInCategory_HWGenerators`,
|
`AAX_ePlugInCategory_SoundField`, `AAX_ePlugInCategory_HWGenerators`,
|
||||||
`AAX_ePlugInCategory_SWGenerators`, `AAX_ePlugInCategory_WrappedPlugin`,
|
`AAX_ePlugInCategory_SWGenerators`, `AAX_ePlugInCategory_WrappedPlugin`,
|
||||||
`AAX_ePlugInCategory_Effect`
|
`AAX_EPlugInCategory_Effect`
|
||||||
|
|
||||||
`PLUGINHOST_AU`
|
`PLUGINHOST_AU`
|
||||||
- May be either TRUE or FALSE (defaults to FALSE). If TRUE, will add the preprocessor definition
|
- May be either TRUE or FALSE (defaults to FALSE). If TRUE, will add the preprocessor definition
|
||||||
|
|
|
||||||
|
|
@ -516,9 +516,11 @@ public:
|
||||||
|
|
||||||
/** Copies a file.
|
/** Copies a file.
|
||||||
|
|
||||||
Tries to copy a file to a different location.
|
Tries to copy a file to a different location. If the target file already exists,
|
||||||
If the target file already exists, this will attempt to delete it first, and
|
this will attempt to delete it first, and will fail if this can't be done.
|
||||||
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
|
@returns true if the operation succeeds
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -46,7 +46,7 @@ namespace juce
|
||||||
New code:
|
New code:
|
||||||
|
|
||||||
RuntimePermissions::request (
|
RuntimePermissions::request (
|
||||||
RuntimePermissions::audioRecording,
|
RuntimePermissions::recordAudio,
|
||||||
[this] (bool wasGranted)
|
[this] (bool wasGranted)
|
||||||
{
|
{
|
||||||
if (! wasGranted)
|
if (! wasGranted)
|
||||||
|
|
|
||||||
|
|
@ -50,7 +50,7 @@ namespace juce
|
||||||
"goodbye" = "au revoir"
|
"goodbye" = "au revoir"
|
||||||
@endcode
|
@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,
|
if the first non-whitespace character on a line isn't a quote, then it's ignored,
|
||||||
(you can use this to add comments).
|
(you can use this to add comments).
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue