mirror of
https://gitlab.gnome.org/GNOME/calls.git
synced 2025-01-05 19:15:32 +00:00
sip: call: Remove unnecessary G_OBJECT() cast
g_object_set() takes a gpointer as argument, so there is no need to cast the argument using G_OBJECT()
This commit is contained in:
parent
fee633e78b
commit
2d4c3f9b43
1 changed files with 1 additions and 1 deletions
|
@ -110,7 +110,7 @@ try_setting_up_media_pipeline (CallsSipCall *self)
|
|||
g_debug ("Setting remote ports: RTP/RTCP %u/%u",
|
||||
self->rport_rtp, self->rport_rtcp);
|
||||
|
||||
g_object_set (G_OBJECT (self->pipeline),
|
||||
g_object_set (self->pipeline,
|
||||
"remote", self->remote,
|
||||
"rport-rtp", self->rport_rtp,
|
||||
"rport-rtcp", self->rport_rtcp,
|
||||
|
|
Loading…
Reference in a new issue