diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2021-06-25 11:24:20 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2021-06-25 19:01:06 +0200 |
commit | 6363add86a3a848be08def62f5c14f683fb0de34 (patch) | |
tree | ee423fc380666b39da2094038830c8be5d7f1560 /libmm-glib/mm-compat.c | |
parent | b38586a12cd1aca12ebdfa363f2c48773a7ca13b (diff) |
libmm-glib,location-gps-nmea: move deprecated methods to compat source
Diffstat (limited to 'libmm-glib/mm-compat.c')
-rw-r--r-- | libmm-glib/mm-compat.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libmm-glib/mm-compat.c b/libmm-glib/mm-compat.c index 22c63d21..6d6c95d1 100644 --- a/libmm-glib/mm-compat.c +++ b/libmm-glib/mm-compat.c @@ -106,6 +106,17 @@ mm_call_properties_get_state_reason (MMCallProperties *self) /*****************************************************************************/ +gchar * +mm_location_gps_nmea_build_full (MMLocationGpsNmea *self) +{ + g_auto(GStrv) traces = NULL; + + traces = mm_location_gps_nmea_get_traces (self); + return (traces ? g_strjoinv ("\r\n", traces) : g_strdup ("")); +} + +/*****************************************************************************/ + gboolean mm_modem_get_pending_network_initiated_sessions (MMModemOma *self, MMOmaPendingNetworkInitiatedSession **sessions, |