diff options
author | trilene <trilene@runbox.com> | 2020-12-18 12:49:24 -0500 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2021-01-07 14:04:50 +0100 |
commit | 07ac7b7e85b504953b0a751a3f56b60ce0a6fb37 (patch) | |
tree | 31bbb685ab74f634a34303701f1ed9c7e2a1a8c7 /src/CallManager.h | |
parent | Fix one-way video calls (diff) | |
download | nheko-07ac7b7e85b504953b0a751a3f56b60ce0a6fb37.tar.xz |
Port PlaceCall dialog to Qml
Diffstat (limited to 'src/CallManager.h')
-rw-r--r-- | src/CallManager.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CallManager.h b/src/CallManager.h index ad25fbd1..75768ee1 100644 --- a/src/CallManager.h +++ b/src/CallManager.h @@ -37,7 +37,6 @@ class CallManager : public QObject public: CallManager(QObject *); - void sendInvite(const QString &roomid, bool isVideo); bool haveCallInvite() const { return haveCallInvite_; } bool isOnCall() const { return session_.state() != webrtc::State::DISCONNECTED; } bool isVideo() const { return isVideo_; } @@ -52,6 +51,7 @@ public: void refreshTurnServer(); public slots: + void sendInvite(const QString &roomid, bool isVideo); void syncEvent(const mtx::events::collections::TimelineEvents &event); void toggleMicMute(); void toggleCameraView() { session_.toggleCameraView(); } |