diff options
author | r0hit05 <rohitsutradhar311@gmail.com> | 2022-06-27 21:39:31 +0530 |
---|---|---|
committer | r0hit05 <rohitsutradhar311@gmail.com> | 2022-07-15 17:20:05 +0530 |
commit | 6663e5683db083ab2def8766e87a5822dd9adbdb (patch) | |
tree | 69621ede123c8b255d9e31cfbbf38d1e7cf73e78 /src/voip/WebRTCSession.h | |
parent | Translated using Weblate (French) (diff) | |
download | nheko-6663e5683db083ab2def8766e87a5822dd9adbdb.tar.xz |
Updated call event namespaces to voip
Diffstat (limited to '')
-rw-r--r-- | src/voip/WebRTCSession.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/voip/WebRTCSession.h b/src/voip/WebRTCSession.h index 04383679..ac1845c7 100644 --- a/src/voip/WebRTCSession.h +++ b/src/voip/WebRTCSession.h @@ -64,7 +64,7 @@ public: bool createOffer(webrtc::CallType, uint32_t shareWindowId); bool acceptOffer(const std::string &sdp); bool acceptAnswer(const std::string &sdp); - void acceptICECandidates(const std::vector<mtx::events::msg::CallCandidates::Candidate> &); + void acceptICECandidates(const std::vector<mtx::events::voip::CallCandidates::Candidate> &); bool isMicMuted() const; bool toggleMicMute(); @@ -78,10 +78,10 @@ public: signals: void offerCreated(const std::string &sdp, - const std::vector<mtx::events::msg::CallCandidates::Candidate> &); + const std::vector<mtx::events::voip::CallCandidates::Candidate> &); void answerCreated(const std::string &sdp, - const std::vector<mtx::events::msg::CallCandidates::Candidate> &); - void newICECandidate(const mtx::events::msg::CallCandidates::Candidate &); + const std::vector<mtx::events::voip::CallCandidates::Candidate> &); + void newICECandidate(const mtx::events::voip::CallCandidates::Candidate &); void stateChanged(webrtc::State); private slots: |