aboutsummaryrefslogtreecommitdiff
path: root/libmm-glib/mm-modem.c
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 /libmm-glib/mm-modem.c
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 'libmm-glib/mm-modem.c')
-rw-r--r--libmm-glib/mm-modem.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/libmm-glib/mm-modem.c b/libmm-glib/mm-modem.c
index 5edf6abd..c5e81035 100644
--- a/libmm-glib/mm-modem.c
+++ b/libmm-glib/mm-modem.c
@@ -1225,8 +1225,7 @@ mm_modem_create_bearer (MMModem *self,
if (cancellable)
ctx->cancellable = g_object_ref (cancellable);
- dictionary = (mm_common_bearer_properties_get_dictionary (
- MM_COMMON_BEARER_PROPERTIES (properties)));
+ dictionary = mm_bearer_properties_get_dictionary (properties);
mm_gdbus_modem_call_create_bearer (
self,
dictionary,
@@ -1268,8 +1267,7 @@ mm_modem_create_bearer_sync (MMModem *self,
g_return_val_if_fail (MM_GDBUS_IS_MODEM (self), NULL);
- dictionary = (mm_common_bearer_properties_get_dictionary (
- MM_COMMON_BEARER_PROPERTIES (properties)));
+ dictionary = mm_bearer_properties_get_dictionary (properties);
mm_gdbus_modem_call_create_bearer_sync (self,
dictionary,
&bearer_path,