1
0
Fork 0
mirror of https://gitlab.gnome.org/GNOME/calls.git synced 2024-06-25 21:29:32 +00:00

mm-provider: Implement get_country_code

This commit is contained in:
Guido Günther 2022-12-21 19:13:24 +01:00 committed by Evangelos Ribeiro Tzaras
parent 69250ac121
commit b880ddf1d7

View file

@ -354,6 +354,17 @@ supports_protocol (CallsOrigin *origin,
}
static const char *
get_country_code (CallsOrigin *origin)
{
CallsMMOrigin *self = CALLS_MM_ORIGIN (origin);
g_assert (CALLS_IS_MM_ORIGIN (origin));
return self->country_code;
}
static void
remove_calls (CallsMMOrigin *self, const char *reason)
{
@ -984,6 +995,7 @@ calls_mm_origin_origin_interface_init (CallsOriginInterface *iface)
{
iface->dial = dial;
iface->supports_protocol = supports_protocol;
iface->get_country_code = get_country_code;
}