1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2025-01-07 04:15:32 +00:00

plugins: Implement call-type property

This commit is contained in:
Evangelos Ribeiro Tzaras 2022-02-12 14:37:28 +01:00
parent 64ff76e62f
commit 04605efac7
4 changed files with 4 additions and 0 deletions

View file

@ -105,6 +105,7 @@ calls_dummy_call_new (const gchar *id,
return g_object_new (CALLS_TYPE_DUMMY_CALL,
"id", id,
"inbound", inbound,
"call-type", CALLS_CALL_TYPE_CELLULAR,
NULL);
}

View file

@ -366,6 +366,7 @@ calls_mm_call_new (MMCall *mm_call)
return g_object_new (CALLS_TYPE_MM_CALL,
"mm-call", mm_call,
"inbound", inbound,
"call-type", CALLS_CALL_TYPE_CELLULAR,
NULL);
}

View file

@ -328,6 +328,7 @@ calls_ofono_call_new (GDBOVoiceCall *voice_call,
"name", name,
"inbound", inbound,
"state", state,
"call-type", CALLS_CALL_TYPE_CELLULAR,
NULL);
}

View file

@ -382,6 +382,7 @@ calls_sip_call_new (const gchar *id,
"inbound", inbound,
"own-ip", own_ip,
"nua-handle", handle,
"call-type", CALLS_CALL_TYPE_SIP_VOICE,
NULL);
}