event-hooks: give unique names to event hooks

This commit is contained in:
Ashok Sidipotu
2022-07-15 09:57:01 +05:30
committed by Julian Bouzas
parent 6bdc6fb697
commit d57e387f75
7 changed files with 17 additions and 17 deletions

View File

@@ -173,7 +173,7 @@ wp_default_nodes_api_enable (WpPlugin * plugin, WpTransition * transition)
g_return_if_fail (dispatcher);
/* default metadata added */
hook = wp_simple_event_hook_new ("default-nodes-api",
hook = wp_simple_event_hook_new ("metadata-added@default-nodes-api",
WP_EVENT_HOOK_DEFAULT_PRIORITY_DEFAULT_METADATA_ADDED_DEFAULT_NODES_API,
WP_EVENT_HOOK_EXEC_TYPE_ON_EVENT,
g_cclosure_new ((GCallback) on_metadata_added, self, NULL));
@@ -186,7 +186,7 @@ wp_default_nodes_api_enable (WpPlugin * plugin, WpTransition * transition)
g_clear_object(&hook);
/* default metadata changed */
hook = wp_simple_event_hook_new ("default-nodes-api",
hook = wp_simple_event_hook_new ("metadata-changed@default-nodes-api",
WP_EVENT_HOOK_DEFAULT_PRIORITY_DEFAULT_METADATA_CHANGED_DEFAULT_NODES_API,
WP_EVENT_HOOK_EXEC_TYPE_ON_EVENT,
g_cclosure_new ((GCallback) on_metadata_changed_hook, self, NULL));