aboutsummaryrefslogtreecommitdiff
path: root/plugins/iridium
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2012-03-01 12:14:44 +0100
committerAleksander Morgado <aleksander@lanedo.com>2012-03-16 14:53:19 +0100
commitd306bb082f1237f6437e05b7a166df91f46655fb (patch)
treea74e7ab343afa56318429fe3384f3b171bf5a3ff /plugins/iridium
parent323df60ed92d66e985a36a12fb334a0cca9bd1ea (diff)
libmm-common: `MMBearerProperties' won't be considered internal any more
Renamed `MMCommonBearerProperties' to `MMBearerProperties', and removed the `MMBearerProperties' provided in libmm-glib. We'll just use the original one from libmm-common always.
Diffstat (limited to 'plugins/iridium')
-rw-r--r--plugins/iridium/mm-bearer-iridium.c12
-rw-r--r--plugins/iridium/mm-broadband-modem-iridium.c2
2 files changed, 7 insertions, 7 deletions
diff --git a/plugins/iridium/mm-bearer-iridium.c b/plugins/iridium/mm-bearer-iridium.c
index 43b19a23..7811fe90 100644
--- a/plugins/iridium/mm-bearer-iridium.c
+++ b/plugins/iridium/mm-bearer-iridium.c
@@ -378,13 +378,13 @@ disconnect (MMBearer *self,
static gboolean
cmp_properties (MMBearer *self,
- MMCommonBearerProperties *properties)
+ MMBearerProperties *properties)
{
- return (mm_common_bearer_properties_get_apn (properties) == NULL &&
- mm_common_bearer_properties_get_ip_type (properties) == NULL &&
- mm_common_bearer_properties_get_number (properties) == NULL &&
- mm_common_bearer_properties_get_rm_protocol (properties) == MM_MODEM_CDMA_RM_PROTOCOL_UNKNOWN &&
- mm_common_bearer_properties_get_allow_roaming (properties));
+ return (mm_bearer_properties_get_apn (properties) == NULL &&
+ mm_bearer_properties_get_ip_type (properties) == NULL &&
+ mm_bearer_properties_get_number (properties) == NULL &&
+ mm_bearer_properties_get_rm_protocol (properties) == MM_MODEM_CDMA_RM_PROTOCOL_UNKNOWN &&
+ mm_bearer_properties_get_allow_roaming (properties));
}
/*****************************************************************************/
diff --git a/plugins/iridium/mm-broadband-modem-iridium.c b/plugins/iridium/mm-broadband-modem-iridium.c
index bb5cdc47..8ae7a8fc 100644
--- a/plugins/iridium/mm-broadband-modem-iridium.c
+++ b/plugins/iridium/mm-broadband-modem-iridium.c
@@ -354,7 +354,7 @@ create_bearer_finish (MMIfaceModem *self,
static void
create_bearer (MMIfaceModem *self,
- MMCommonBearerProperties *properties,
+ MMBearerProperties *properties,
GAsyncReadyCallback callback,
gpointer user_data)
{