From 866ede214ef11fe1aefcb39b1a3fcfbf25058648 Mon Sep 17 00:00:00 2001 From: Julian Bouzas Date: Mon, 4 Jan 2021 12:46:53 -0500 Subject: [PATCH] session: remove default-endpoint-changed signal --- lib/wp/session.c | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/lib/wp/session.c b/lib/wp/session.c index e289b182..1d4703b5 100644 --- a/lib/wp/session.c +++ b/lib/wp/session.c @@ -25,7 +25,6 @@ #include enum { - SIGNAL_DEFAULT_ENDPOINT_CHANGED, SIGNAL_ENDPOINTS_CHANGED, SIGNAL_LINKS_CHANGED, N_SIGNALS, @@ -263,21 +262,6 @@ wp_session_class_init (WpSessionClass * klass) wp_pw_object_mixin_class_override_properties (object_class); - /** - * WpSession::default-endpoint-changed: - * @self: the session - * @direction: the endpoint direction - * @id: the endpoint's bound id - * - * Emitted when the default endpoint of a specific direction changes. - * The passed @id is the bound id (wp_proxy_get_bound_id()) of the new - * default endpoint. - */ - signals[SIGNAL_DEFAULT_ENDPOINT_CHANGED] = g_signal_new ( - "default-endpoint-changed", G_TYPE_FROM_CLASS (klass), - G_SIGNAL_RUN_LAST, 0, NULL, NULL, NULL, G_TYPE_NONE, 2, - WP_TYPE_DIRECTION, G_TYPE_UINT); - /** * WpSession::endpoints-changed: * @self: the session