sdbusplus: object: don't use 'bool' argument constructor

`sdbusplus::server::object_t` has long had an enum-based parameter for
signal action, but maintained a backwards compatible boolean mapping.
It is time to remove this boolean to make it more observable which
actions are being used in applications.  Map all `true` occurrences to
`action::defer_emit`.

Change-Id: I21f8e8d8e988ee29933b544fd4ffd8bf0fe3963c
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
diff --git a/elog_entry.hpp b/elog_entry.hpp
index 38c4e84..609f905 100644
--- a/elog_entry.hpp
+++ b/elog_entry.hpp
@@ -67,7 +67,7 @@
           std::string&& msgErr, std::vector<std::string>&& additionalDataErr,
           AssociationList&& objects, const std::string& fwVersion,
           const std::string& filePath, internal::Manager& parent) :
-        EntryIfaces(bus, objectPath.c_str(), true),
+        EntryIfaces(bus, objectPath.c_str(), EntryIfaces::action::defer_emit),
         parent(parent)
     {
         id(idErr, true);
@@ -100,7 +100,7 @@
      */
     Entry(sdbusplus::bus::bus& bus, const std::string& path, uint32_t entryId,
           internal::Manager& parent) :
-        EntryIfaces(bus, path.c_str(), true),
+        EntryIfaces(bus, path.c_str(), EntryIfaces::action::defer_emit),
         parent(parent)
     {
         id(entryId, true);