diff --git a/src/chat/chat-room/server-group-chat-room-p.h b/src/chat/chat-room/server-group-chat-room-p.h index 724d32fb4..bfb58f200 100644 --- a/src/chat/chat-room/server-group-chat-room-p.h +++ b/src/chat/chat-room/server-group-chat-room-p.h @@ -84,7 +84,7 @@ private: bool isAdminLeft () const; void queueMessage (const std::shared_ptr &message); void queueMessage (const std::shared_ptr &msg, const IdentityAddress &deviceAddress); - void removeLeftParticipants (const std::list &compatibleParticipants); + void removeNonPresentParticipants (const std::list &compatibleParticipants); void onParticipantDeviceLeft (const std::shared_ptr &session); diff --git a/src/chat/chat-room/server-group-chat-room-stub.cpp b/src/chat/chat-room/server-group-chat-room-stub.cpp index 9f30159bd..90950be2f 100644 --- a/src/chat/chat-room/server-group-chat-room-stub.cpp +++ b/src/chat/chat-room/server-group-chat-room-stub.cpp @@ -104,7 +104,7 @@ void ServerGroupChatRoomPrivate::queueMessage (const shared_ptr &messag void ServerGroupChatRoomPrivate::queueMessage (const shared_ptr &msg, const IdentityAddress &deviceAddress) {} -void ServerGroupChatRoomPrivate::removeLeftParticipants (const list &compatibleParticipants) {} +void ServerGroupChatRoomPrivate::removeNonPresentParticipants (const list &compatibleParticipants) {} // -----------------------------------------------------------------------------