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

ARAPluginDemo: Add more features to demo host integration

This commit is contained in:
attila 2022-11-10 14:16:09 +01:00
parent 5162793245
commit 23445ebd92
2 changed files with 963 additions and 160 deletions

File diff suppressed because it is too large Load diff

View file

@ -204,7 +204,7 @@ private:
};
//==============================================================================
/** Base class for a renderer fulfilling the ARAEditorView role as described in the ARA SDK.
/** Base class for fulfilling the ARAEditorView role as described in the ARA SDK.
Instances of this class are constructed by the DocumentController. If you are subclassing
ARAEditorView, make sure to call the base class implementation of overridden functions.
@ -244,7 +244,7 @@ public:
/** Called when the editor view's selection changes.
@param viewSelection The current selection state
*/
virtual void onNewSelection (const ARA::PlugIn::ViewSelection& viewSelection)
virtual void onNewSelection (const ARAViewSelection& viewSelection)
{
ignoreUnused (viewSelection);
}