@@ -90,7 +90,7 @@ class CPlayListPlayer : public IMsgTargetCallback,
9090 int GetNextItemIdx (int offset) const ;
9191
9292 /* ! \brief Set the active playlist
93- \param id Id of playlist
93+ \param playlistId Id of playlist
9494 \sa GetCurrentPlaylist
9595 */
9696 void SetCurrentPlaylist (Id playlistId);
@@ -102,7 +102,7 @@ class CPlayListPlayer : public IMsgTargetCallback,
102102 Id GetCurrentPlaylist () const ;
103103
104104 /* ! \brief Get a particular playlist object
105- \param id Id of playlist
105+ \param playlistId Id of playlist
106106 \return A reference to the CPlayList object.
107107 \sa GetCurrentPlaylist
108108 */
@@ -125,7 +125,7 @@ class CPlayListPlayer : public IMsgTargetCallback,
125125 /* ! \brief Set shuffle state of a playlist.
126126 If the shuffle state changes, the playlist is shuffled or unshuffled.
127127 Has no effect if Party Mode is enabled.
128- \param playlist the playlist to (un)shuffle, PLAYLIST::TYPE_MUSIC or PLAYLIST::TYPE_VIDEO.
128+ \param playlistId the playlist to (un)shuffle, PLAYLIST::TYPE_MUSIC or PLAYLIST::TYPE_VIDEO.
129129 \param shuffle set true to shuffle, false to unshuffle.
130130 \param notify notify the user with a Toast notification (defaults to false)
131131 \sa IsShuffled
@@ -134,7 +134,7 @@ class CPlayListPlayer : public IMsgTargetCallback,
134134
135135 /* ! \brief Return whether a playlist is shuffled.
136136 If partymode is enabled, this always returns false.
137- \param playlist the playlist to query for shuffle state, PLAYLIST::TYPE_MUSIC or PLAYLIST::TYPE_VIDEO.
137+ \param playlistId the playlist to query for shuffle state, PLAYLIST::TYPE_MUSIC or PLAYLIST::TYPE_VIDEO.
138138 \return true if the given playlist is shuffled and party mode isn't enabled, false otherwise.
139139 \sa SetShuffle
140140 */
@@ -147,7 +147,7 @@ class CPlayListPlayer : public IMsgTargetCallback,
147147
148148 /* ! \brief Set repeat state of a playlist.
149149 If called while in Party Mode, repeat is disabled.
150- \param playlist the playlist to set repeat state for, PLAYLIST::TYPE_MUSIC or PLAYLIST::TYPE_VIDEO.
150+ \param playlistId the playlist to set repeat state for, PLAYLIST::TYPE_MUSIC or PLAYLIST::TYPE_VIDEO.
151151 \param state set to RepeatState::NONE, RepeatState::ONE or RepeatState::ALL
152152 \param notify notify the user with a Toast notification
153153 \sa GetRepeat
@@ -171,13 +171,13 @@ class CPlayListPlayer : public IMsgTargetCallback,
171171
172172protected:
173173 /* ! \brief Returns true if the given is set to repeat all
174- \param playlist Playlist to be query
174+ \param playlistId Playlist to be query
175175 \return true if the given playlist is set to repeat all, false otherwise.
176176 */
177177 bool Repeated (Id playlistId) const ;
178178
179179 /* ! \brief Returns true if the given is set to repeat one
180- \param playlist Playlist to be query
180+ \param playlistId Playlist to be query
181181 \return true if the given playlist is set to repeat one, false otherwise.
182182 */
183183 bool RepeatedOne (Id playlistId) const ;
0 commit comments