summary refs log tree commit diff
path: root/src/CallManager.h
diff options
context:
space:
mode:
authortrilene <trilene@runbox.com>2020-12-18 12:49:24 -0500
committerNicolas Werner <nicolas.werner@hotmail.de>2021-01-07 14:04:50 +0100
commit07ac7b7e85b504953b0a751a3f56b60ce0a6fb37 (patch)
tree31bbb685ab74f634a34303701f1ed9c7e2a1a8c7 /src/CallManager.h
parentFix one-way video calls (diff)
downloadnheko-07ac7b7e85b504953b0a751a3f56b60ce0a6fb37.tar.xz
Port PlaceCall dialog to Qml
Diffstat (limited to 'src/CallManager.h')
-rw-r--r--src/CallManager.h2
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(); }