From 7b06d0109799c934b84f2c55ba3da5c4f9ad2329 Mon Sep 17 00:00:00 2001 From: Benjamin Reis Date: Mon, 6 Nov 2017 11:24:40 +0100 Subject: [PATCH] use bool instead of bool_t in c++ --- 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 88e851bd3..88e26d437 100644 --- a/src/conference/local-conference-event-handler-p.h +++ b/src/conference/local-conference-event-handler-p.h @@ -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); diff --git a/src/conference/local-conference-event-handler.cpp b/src/conference/local-conference-event-handler.cpp index 1bf56b528..6ff0222f2 100644 --- a/src/conference/local-conference-event-handler.cpp +++ b/src/conference/local-conference-event-handler.cpp @@ -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) {