aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTakashi Sakamoto <o-takashi@sakamocchi.jp>2022-05-06 15:32:37 +0900
committerTakashi Sakamoto <o-takashi@sakamocchi.jp>2022-05-06 15:34:27 +0900
commitf58cc2133b9990042ec67f48b4cd9949ccef2f8c (patch)
tree607862de35170f67d6fcb8ff1382330339a5204f
parent2b374e0fa7fbe951330baae03f08352ee65c15aa (diff)
downloadlibhinoko-f58cc2133b9990042ec67f48b4cd9949ccef2f8c.tar.gz
fw_iso_ctx: fix signal flag as actionable
Hinoko.FwIsoCtx::stopped should be emitted by GObject-derived object class which implements the interface. It's the case to add action flag for the signal. Fixes: f2a2e7aaefc6 ("fw_iso_ctx: make it GObject Interface") Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
-rw-r--r--src/fw_iso_ctx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fw_iso_ctx.c b/src/fw_iso_ctx.c
index 9e04d5b..3d5ae82 100644
--- a/src/fw_iso_ctx.c
+++ b/src/fw_iso_ctx.c
@@ -46,7 +46,7 @@ static void hinoko_fw_iso_ctx_default_init(HinokoFwIsoCtxInterface *iface)
*/
g_signal_new(STOPPED_SIGNAL_NEME,
G_TYPE_FROM_INTERFACE(iface),
- G_SIGNAL_RUN_LAST,
+ G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION,
G_STRUCT_OFFSET(HinokoFwIsoCtxInterface, stopped),
NULL, NULL,
g_cclosure_marshal_VOID__BOXED,