mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-15 07:56:22 +02:00
Fix JSDoc arrays
This commit is contained in:
parent
4e802b0f3f
commit
0ca0a6f3be
2 changed files with 3 additions and 3 deletions
|
@ -51,7 +51,7 @@ class Audio : public AudioScriptingInterface, protected ReadWriteLockable {
|
|||
* @property {object} devices <em>Read-only.</em> <strong>Deprecated:</strong> This property is deprecated and will be
|
||||
* removed.
|
||||
* @property {boolean} isSoloing <em>Read-only.</em> <code>true</code> if any nodes are soloed.
|
||||
* @property {QVector<QUuid>} soloList <em>Read-only.</em> Get the list of currently soloed node UUIDs.
|
||||
* @property {Uuid[]} soloList <em>Read-only.</em> Get the list of currently soloed node UUIDs.
|
||||
*/
|
||||
|
||||
Q_PROPERTY(bool muted READ isMuted WRITE setMuted NOTIFY mutedChanged)
|
||||
|
|
|
@ -43,7 +43,7 @@ public:
|
|||
/**jsdoc
|
||||
* Add nodes to the audio solo list
|
||||
* @function Audio.addToSoloList
|
||||
* @param {QVector<QUuid>} uuidList - List of node UUIDs to add to the solo list.
|
||||
* @param {Uuid[]} uuidList - List of node UUIDs to add to the solo list.
|
||||
*/
|
||||
Q_INVOKABLE void addToSoloList(QVector<QUuid> uuidList) {
|
||||
_localAudioInterface->getAudioSolo().addUUIDs(uuidList);
|
||||
|
@ -52,7 +52,7 @@ public:
|
|||
/**jsdoc
|
||||
* Remove nodes from the audio solo list
|
||||
* @function Audio.removeFromSoloList
|
||||
* @param {QVector<QUuid>} uuidList - List of node UUIDs to remove from the solo list.
|
||||
* @param {Uuid[]} uuidList - List of node UUIDs to remove from the solo list.
|
||||
*/
|
||||
Q_INVOKABLE void removeFromSoloList(QVector<QUuid> uuidList) {
|
||||
_localAudioInterface->getAudioSolo().removeUUIDs(uuidList);
|
||||
|
|
Loading…
Reference in a new issue