@@ -219,22 +219,22 @@ class PwNodeAudioIface: public QObject {
219219 // clang-format off
220220 // / If the node is currently muted. Setting this property changes the mute state.
221221 // /
222- // / > [!WARNING] This property is invalid unless the node is [ bound](../pwobjecttracker) .
222+ // / > [!WARNING] This property is invalid unless the node is bound using @@PwObjectTracker .
223223 Q_PROPERTY (bool muted READ isMuted WRITE setMuted NOTIFY mutedChanged);
224224 // / The average volume over all channels of the node.
225225 // / Setting this property modifies the volume of all channels proportionately.
226226 // /
227- // / > [!WARNING] This property is invalid unless the node is [ bound](../pwobjecttracker) .
227+ // / > [!WARNING] This property is invalid unless the node is bound using @@PwObjectTracker .
228228 Q_PROPERTY (float volume READ averageVolume WRITE setAverageVolume NOTIFY volumesChanged);
229229 // / The audio channels present on the node.
230230 // /
231- // / > [!WARNING] This property is invalid unless the node is [ bound](../pwobjecttracker) .
231+ // / > [!WARNING] This property is invalid unless the node is bound using @@PwObjectTracker .
232232 Q_PROPERTY (QVector<qs::service::pipewire::PwAudioChannel::Enum> channels READ channels NOTIFY channelsChanged);
233233 // / The volumes of each audio channel individually. Each entry corrosponds to
234234 // / the volume of the channel at the same index in @@channels. @@volumes and @@channels
235235 // / will always be the same length.
236236 // /
237- // / > [!WARNING] This property is invalid unless the node is [ bound](../pwobjecttracker) .
237+ // / > [!WARNING] This property is invalid unless the node is bound using @@PwObjectTracker .
238238 Q_PROPERTY (QVector<float > volumes READ volumes WRITE setVolumes NOTIFY volumesChanged);
239239 // clang-format on
240240 QML_NAMED_ELEMENT (PwNodeAudio);
@@ -300,7 +300,7 @@ class PwNodeIface: public PwObjectIface {
300300 // / - `media.title` - The title of the currently playing media.
301301 // / - `media.artist` - The artist of the currently playing media.
302302 // /
303- // / > [!WARNING] This property is invalid unless the node is [ bound](../pwobjecttracker) .
303+ // / > [!WARNING] This property is invalid unless the node is bound using @@PwObjectTracker .
304304 Q_PROPERTY (QVariantMap properties READ properties NOTIFY propertiesChanged);
305305 // / Extra information present only if the node sends or receives audio.
306306 // /
@@ -357,7 +357,7 @@ class PwLinkIface: public PwObjectIface {
357357 Q_PROPERTY (qs::service::pipewire::PwNodeIface* source READ source CONSTANT);
358358 // / The current state of the link.
359359 // /
360- // / > [!WARNING] This property is invalid unless the node is [ bound](../pwobjecttracker) .
360+ // / > [!WARNING] This property is invalid unless the node is bound using @@PwObjectTracker .
361361 Q_PROPERTY (PwLinkState::Enum state READ state NOTIFY stateChanged);
362362 QML_NAMED_ELEMENT (PwLink);
363363 QML_UNCREATABLE (" PwLinks cannot be created directly" );
@@ -392,7 +392,7 @@ class PwLinkGroupIface
392392 Q_PROPERTY (qs::service::pipewire::PwNodeIface* source READ source CONSTANT);
393393 // / The current state of the link group.
394394 // /
395- // / > [!WARNING] This property is invalid unless the node is [ bound](../pwobjecttracker) .
395+ // / > [!WARNING] This property is invalid unless the node is bound using @@PwObjectTracker .
396396 Q_PROPERTY (qs::service::pipewire::PwLinkState::Enum state READ state NOTIFY stateChanged);
397397 QML_NAMED_ELEMENT (PwLinkGroup);
398398 QML_UNCREATABLE (" PwLinkGroups cannot be created directly" );
0 commit comments