aboutsummaryrefslogtreecommitdiff
path: root/src/client/QXmppCallManager.h
diff options
context:
space:
mode:
authorLinus Jahn <lnj@kaidan.im>2020-02-04 16:11:24 +0100
committerLinus Jahn <lnj@kaidan.im>2020-02-04 16:13:03 +0100
commita4d292ecb0a3459825e81a2b6d81df7a6d6635fb (patch)
tree0808b3b527d030c2f2cbd846f832d639d6a20c31 /src/client/QXmppCallManager.h
parent99c0df8616056318eb94539cfde497d3b10f3ae0 (diff)
downloadqxmpp-a4d292ecb0a3459825e81a2b6d81df7a6d6635fb.tar.gz
Fix undocumented Q_PROPERTies
Diffstat (limited to 'src/client/QXmppCallManager.h')
-rw-r--r--src/client/QXmppCallManager.h17
1 files changed, 15 insertions, 2 deletions
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: