Qt: Fix some documentation warnings.

This commit is contained in:
Gerald Combs 2021-04-30 15:23:35 -07:00 committed by Wireshark GitLab Utility
parent c603a5f2c1
commit f80227861f
2 changed files with 3 additions and 3 deletions

View File

@ -84,7 +84,7 @@ public:
* Each item must have filled items: src_addr, src_port, dest_addr,
* dest_port, ssrc, packet_count, setup_frame_number, and start_rel_time.
*
* @param stream_infos struct with rtpstream info
* @param stream_ids struct with rtpstream info
*/
void replaceRtpStreams(QVector<rtpstream_id_t *> stream_ids);
void addRtpStreams(QVector<rtpstream_id_t *> stream_ids);

View File

@ -237,7 +237,7 @@ void set_action_shortcuts_visible_in_context_menu(QList<QAction *> actions);
* Create copy of all rtpstream_ids to new QVector
* => caller must release it with qvector_rtpstream_ids_free()
*
* @param rtpstream_ids List of infos
* @param stream_ids List of infos
* @return Vector of rtpstream_ids
*/
QVector<rtpstream_id_t *>qvector_rtpstream_ids_copy(QVector<rtpstream_id_t *> stream_ids);
@ -245,7 +245,7 @@ QVector<rtpstream_id_t *>qvector_rtpstream_ids_copy(QVector<rtpstream_id_t *> st
/**
* Free all rtpstream_ids in QVector
*
* @param rtpstream_infos List of infos
* @param stream_ids List of infos
*/
void qvector_rtpstream_ids_free(QVector<rtpstream_id_t *> stream_ids);