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

These were missed in the prior commit to handle this due to this file
only being built when p10 is enabled.

Signed-off-by: Andrew Geissler <geissonator@yahoo.com>
Change-Id: Ia1a67026467279468569db1a6137a576b28be089
diff --git a/powermode.hpp b/powermode.hpp
index 1d686fe..b5200d4 100644
--- a/powermode.hpp
+++ b/powermode.hpp
@@ -258,8 +258,11 @@
                        EventPtr& event
 #endif
                        ) :
-        ModeInterface(utils::getBus(), modePath, false),
-        IpsInterface(utils::getBus(), ipsPath, false), manager(managerRef),
+        ModeInterface(utils::getBus(), modePath,
+                      ModeInterface::action::emit_no_signals),
+        IpsInterface(utils::getBus(), ipsPath,
+                     IpsInterface::action::emit_no_signals),
+        manager(managerRef),
         pmodeMatch(utils::getBus(),
                    sdbusplus::bus::match::rules::propertiesChanged(
                        PMODE_PATH, PMODE_INTERFACE),