put a method to private where it belongs

This commit is contained in:
Benjamin Reis 2017-10-12 12:14:48 +02:00
parent dc80931672
commit 57626a7521
2 changed files with 2 additions and 2 deletions

View file

@ -33,7 +33,6 @@ public:
void notifyFullState (const std::string &notify, LinphoneEvent *lev);
void notifyAllExcept (const std::string &notify, const Address &addr);
void notifyAll (const std::string &notify);
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 &notify, const Address &addr);
L_DECLARE_PUBLIC(LocalConferenceEventHandler);

View file

@ -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 () {