From 57626a7521e16019c5e377794ff88b3171c68c00 Mon Sep 17 00:00:00 2001 From: Benjamin Reis Date: Thu, 12 Oct 2017 12:14:48 +0200 Subject: [PATCH] put a method to private where it belongs --- src/conference/local-conference-event-handler-p.h | 2 +- src/conference/local-conference-event-handler.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/conference/local-conference-event-handler-p.h b/src/conference/local-conference-event-handler-p.h index 0fffe1c55..82b11f083 100644 --- a/src/conference/local-conference-event-handler-p.h +++ b/src/conference/local-conference-event-handler-p.h @@ -33,7 +33,6 @@ public: void notifyFullState (const std::string ¬ify, LinphoneEvent *lev); void notifyAllExcept (const std::string ¬ify, const Address &addr); void notifyAll (const std::string ¬ify); - std::string createNotify (Xsd::ConferenceInfo::ConferenceType confInfo); std::string createNotifyFullState (); std::string createNotifyParticipantAdded (const Address &addr); std::string createNotifyParticipantRemoved (const Address &addr); @@ -49,6 +48,7 @@ private: LocalConference *conf = nullptr; unsigned int lastNotify = 0; + std::string createNotify (Xsd::ConferenceInfo::ConferenceType confInfo); void sendNotify (const std::string ¬ify, const Address &addr); L_DECLARE_PUBLIC(LocalConferenceEventHandler); diff --git a/src/conference/local-conference-event-handler.cpp b/src/conference/local-conference-event-handler.cpp index fef59f0ef..59b67edaa 100644 --- a/src/conference/local-conference-event-handler.cpp +++ b/src/conference/local-conference-event-handler.cpp @@ -249,7 +249,7 @@ LocalConferenceEventHandler::LocalConferenceEventHandler (LinphoneCore *core, Lo xercesc::XMLPlatformUtils::Initialize(); d->conf = localConf; d->core = core; - //init d->lastNotify = last notify + // TODO : init d->lastNotify = last notify } LocalConferenceEventHandler::~LocalConferenceEventHandler () {