mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-03 20:46:28 +00:00
use bool instead of bool_t in c++
This commit is contained in:
parent
eb33a86e21
commit
7b06d01097
2 changed files with 2 additions and 2 deletions
|
|
@ -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 ¬ify, const Address &addr);
|
||||
|
||||
L_DECLARE_PUBLIC(LocalConferenceEventHandler);
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue