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-bearer.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-bearer.c')
-rw-r--r-- | src/mm-bearer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mm-bearer.c b/src/mm-bearer.c index 358b0265..7f92677b 100644 --- a/src/mm-bearer.c +++ b/src/mm-bearer.c @@ -630,7 +630,7 @@ mm_bearer_disconnect_force (MMBearer *self) gboolean mm_bearer_cmp_properties (MMBearer *self, - MMCommonBearerProperties *properties) + MMBearerProperties *properties) { return MM_BEARER_GET_CLASS (self)->cmp_properties (self, properties); } @@ -639,12 +639,12 @@ mm_bearer_cmp_properties (MMBearer *self, void mm_bearer_expose_properties (MMBearer *bearer, - MMCommonBearerProperties *properties) + MMBearerProperties *properties) { GVariant *dictionary; /* Keep the whole list of properties in the interface */ - dictionary = mm_common_bearer_properties_get_dictionary (properties); + dictionary = mm_bearer_properties_get_dictionary (properties); mm_gdbus_bearer_set_properties (MM_GDBUS_BEARER (bearer), dictionary); g_variant_unref (dictionary); |