diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-01 12:14:44 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-16 14:53:19 +0100 |
commit | d306bb082f1237f6437e05b7a166df91f46655fb (patch) | |
tree | a74e7ab343afa56318429fe3384f3b171bf5a3ff /src/mm-iface-modem.c | |
parent | 323df60ed92d66e985a36a12fb334a0cca9bd1ea (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 'src/mm-iface-modem.c')
-rw-r--r-- | src/mm-iface-modem.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mm-iface-modem.c b/src/mm-iface-modem.c index 36f8568c..4eac0416 100644 --- a/src/mm-iface-modem.c +++ b/src/mm-iface-modem.c @@ -196,7 +196,7 @@ create_bearer_ready (MMIfaceModem *self, void mm_iface_modem_create_bearer (MMIfaceModem *self, - MMCommonBearerProperties *properties, + MMBearerProperties *properties, GAsyncReadyCallback callback, gpointer user_data) { @@ -270,7 +270,7 @@ handle_create_bearer_auth_ready (MMBaseModem *self, GAsyncResult *res, HandleCreateBearerContext *ctx) { - MMCommonBearerProperties *properties; + MMBearerProperties *properties; GError *error = NULL; if (!mm_base_modem_authorize_finish (self, res, &error)) { @@ -279,7 +279,7 @@ handle_create_bearer_auth_ready (MMBaseModem *self, return; } - properties = mm_common_bearer_properties_new_from_dictionary (ctx->dictionary, &error); + properties = mm_bearer_properties_new_from_dictionary (ctx->dictionary, &error); if (!properties) { g_dbus_method_invocation_take_error (ctx->invocation, error); handle_create_bearer_context_free (ctx); |