mirror of
https://gitlab.freedesktop.org/upower/upower.git
synced 2026-05-09 09:28:10 +02:00
lib: Simplify proxying glue properties in UpClient
This commit is contained in:
parent
c9f3a13b29
commit
c33528da7a
1 changed files with 2 additions and 14 deletions
|
|
@ -573,9 +573,6 @@ static void
|
|||
up_client_init (UpClient *client)
|
||||
{
|
||||
GError *error = NULL;
|
||||
GParamSpec **specs;
|
||||
guint n_props;
|
||||
guint i;
|
||||
|
||||
client->priv = UP_CLIENT_GET_PRIVATE (client);
|
||||
client->priv->array = g_ptr_array_new_with_free_func ((GDestroyNotify) g_object_unref);
|
||||
|
|
@ -603,17 +600,8 @@ up_client_init (UpClient *client)
|
|||
g_signal_connect (client->priv->proxy, "changed",
|
||||
G_CALLBACK (up_client_changed_cb), client);
|
||||
|
||||
/* Proxy all the property notifications from the glue object */
|
||||
specs = g_object_class_list_properties (G_OBJECT_GET_CLASS (client), &n_props);
|
||||
for (i = 0; i < n_props; i++) {
|
||||
gchar *signal_name;
|
||||
|
||||
signal_name = g_strdup_printf ("notify::%s", specs[i]->name);
|
||||
g_signal_connect (client->priv->proxy, signal_name,
|
||||
G_CALLBACK (up_client_notify_cb), client);
|
||||
g_free (signal_name);
|
||||
}
|
||||
g_free (specs);
|
||||
g_signal_connect (client->priv->proxy, "notify",
|
||||
G_CALLBACK (up_client_notify_cb), client);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue