From a4d292ecb0a3459825e81a2b6d81df7a6d6635fb Mon Sep 17 00:00:00 2001 From: Linus Jahn Date: Tue, 4 Feb 2020 16:11:24 +0100 Subject: Fix undocumented Q_PROPERTies --- src/client/QXmppCallManager.h | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) (limited to 'src/client/QXmppCallManager.h') diff --git a/src/client/QXmppCallManager.h b/src/client/QXmppCallManager.h index 78cafe5b..98579601 100644 --- a/src/client/QXmppCallManager.h +++ b/src/client/QXmppCallManager.h @@ -79,14 +79,27 @@ public: ~QXmppCall() override; + // documentation needs to be here, see https://stackoverflow.com/questions/49192523/ + /// Returns the call's direction. QXmppCall::Direction direction() const; + /// Returns the remote party's JID. QString jid() const; - QString sid() const; + /// + /// Returns the call's state. + /// + /// \sa stateChanged() + /// QXmppCall::State state() const; + QString sid() const; + QXmppRtpAudioChannel *audioChannel() const; - QIODevice::OpenMode audioMode() const; QXmppRtpVideoChannel *videoChannel() const; + + // documentation needs to be here, see https://stackoverflow.com/questions/49192523/ + /// Returns the audio mode. + QIODevice::OpenMode audioMode() const; + /// Returns the video mode. QIODevice::OpenMode videoMode() const; signals: -- cgit v1.2.3