diff --git a/src/conference/remote-conference.cpp b/src/conference/remote-conference.cpp index 4dbf06aac..f2a6a2f68 100644 --- a/src/conference/remote-conference.cpp +++ b/src/conference/remote-conference.cpp @@ -83,43 +83,25 @@ string RemoteConference::getResourceLists (const list &addresse // ----------------------------------------------------------------------------- -void RemoteConference::onConferenceCreated (const IdentityAddress &addr) {} +void RemoteConference::onConferenceCreated (const IdentityAddress &) {} -void RemoteConference::onConferenceTerminated (const IdentityAddress &addr) { +void RemoteConference::onConferenceTerminated (const IdentityAddress &) { L_D(); d->eventHandler->unsubscribe(); } -void RemoteConference::onFirstNotifyReceived (const IdentityAddress &addr) {} +void RemoteConference::onFirstNotifyReceived (const IdentityAddress &) {} -void RemoteConference::onParticipantAdded (const std::shared_ptr &event, bool isFullState) { - (void)event; - (void)isFullState; -} +void RemoteConference::onParticipantAdded (const std::shared_ptr &, bool) {} -void RemoteConference::onParticipantRemoved (const std::shared_ptr &event, bool isFullState) { - (void)event; - (void)isFullState; -} +void RemoteConference::onParticipantRemoved (const std::shared_ptr &, bool) {} -void RemoteConference::onParticipantSetAdmin (const std::shared_ptr &event, bool isFullState) { - (void)event; - (void)isFullState; -} +void RemoteConference::onParticipantSetAdmin (const std::shared_ptr &, bool) {} -void RemoteConference::onSubjectChanged (const std::shared_ptr &event, bool isFullState) { - (void)event; - (void)isFullState; -} +void RemoteConference::onSubjectChanged (const std::shared_ptr &, bool) {} -void RemoteConference::onParticipantDeviceAdded (const std::shared_ptr &event, bool isFullState) { - (void)event; - (void)isFullState; -} +void RemoteConference::onParticipantDeviceAdded (const std::shared_ptr &, bool) {} -void RemoteConference::onParticipantDeviceRemoved (const std::shared_ptr &event, bool isFullState) { - (void)event; - (void)isFullState; -} +void RemoteConference::onParticipantDeviceRemoved (const std::shared_ptr &, bool) {} LINPHONE_END_NAMESPACE