use bool instead of bool_t in c++

This commit is contained in:
Benjamin Reis 2017-11-06 11:24:40 +01:00
parent eb33a86e21
commit 7b06d01097
2 changed files with 2 additions and 2 deletions

View file

@ -49,7 +49,7 @@ private:
LocalConference *conf = nullptr;
unsigned int lastNotify = 0;
std::string createNotify (Xsd::ConferenceInfo::ConferenceType confInfo, int notifyId = -1, bool isFullState = FALSE);
std::string createNotify (Xsd::ConferenceInfo::ConferenceType confInfo, int notifyId = -1, bool isFullState = false);
void sendNotify (const std::string &notify, const Address &addr);
L_DECLARE_PUBLIC(LocalConferenceEventHandler);

View file

@ -130,7 +130,7 @@ string LocalConferenceEventHandlerPrivate::createNotifyFullState (int notifyId)
confInfo.getUsers()->getUser().push_back(user);
}
return createNotify(confInfo, notifyId, TRUE);
return createNotify(confInfo, notifyId, true);
}
string LocalConferenceEventHandlerPrivate::createNotifyParticipantAdded (const Address &addr, int notifyId) {