aboutsummaryrefslogtreecommitdiff
path: root/libmm-glib/mm-compat.c
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@aleksander.es>2021-06-25 11:24:20 +0200
committerAleksander Morgado <aleksander@aleksander.es>2021-06-25 19:01:06 +0200
commit6363add86a3a848be08def62f5c14f683fb0de34 (patch)
treeee423fc380666b39da2094038830c8be5d7f1560 /libmm-glib/mm-compat.c
parentb38586a12cd1aca12ebdfa363f2c48773a7ca13b (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.c11
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,