1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-12-13 16:07:36 +00:00

dbus-manager: Prefer canonical signal names

This commit is contained in:
Evangelos Ribeiro Tzaras 2022-02-01 10:36:54 +01:00
parent 423ce4668e
commit aa04401b06

View file

@ -220,10 +220,10 @@ call_added_cb (CallsDBusManager *self, CuiCall *call)
/* Keep in sync with call object */
g_object_set_data_full (G_OBJECT (object), "call", g_object_ref (call), g_object_unref);
g_object_connect (iface,
"object_signal::handle-accept", G_CALLBACK (on_handle_call_accept), call,
"object_signal::handle-hangup", G_CALLBACK (on_handle_call_hangup), call,
"object-signal::handle-accept", G_CALLBACK (on_handle_call_accept), call,
"object-signal::handle-hangup", G_CALLBACK (on_handle_call_hangup), call,
"object-signal::handle-send_dtmf", G_CALLBACK (on_handle_call_send_dtmf), call,
"object_signal::handle-silence", G_CALLBACK (on_handle_call_silence), call,
"object-signal::handle-silence", G_CALLBACK (on_handle_call_silence), call,
NULL);
g_object_bind_property (call, "state", iface, "state", G_BINDING_SYNC_CREATE);
g_object_bind_property (call, "inbound", iface, "inbound", G_BINDING_SYNC_CREATE);