aboutsummaryrefslogtreecommitdiff
path: root/src/mm-modem-location.c
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@gnu.org>2011-09-02 20:28:12 +0200
committerAleksander Morgado <aleksander@lanedo.com>2012-03-15 14:14:19 +0100
commitd47176a32c45da0f63ec5ab8024cf4e5f6467a7f (patch)
tree3914d9064c045e606d2da23eff392dbf9af43ea5 /src/mm-modem-location.c
parent1e79a2d292e7e68430043d9741bfbbe01cd3206f (diff)
core: avoid using DBusGMethodInvocation in auth API
While porting to GDBus, use opaque pointers. This allows us to include either a DBusGMethodInvocation or a GDBusMethodInvocation in the 'context' pointer. Once fully ported to GDBus, we can safely change it back to make the context be a GDBusMethodInvocation.
Diffstat (limited to 'src/mm-modem-location.c')
-rw-r--r--src/mm-modem-location.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mm-modem-location.c b/src/mm-modem-location.c
index 2dadd4ed..130425ef 100644
--- a/src/mm-modem-location.c
+++ b/src/mm-modem-location.c
@@ -137,7 +137,7 @@ impl_modem_location_enable (MMModemLocation *modem,
if (!mm_modem_auth_request (MM_MODEM (modem),
MM_AUTHORIZATION_LOCATION,
context,
- loc_enable_auth_cb,
+ (MMAuthRequestCb)loc_enable_auth_cb,
info,
loc_auth_info_destroy,
&error)) {
@@ -232,7 +232,7 @@ impl_modem_location_get_location (MMModemLocation *modem,
if (!mm_modem_auth_request (MM_MODEM (modem),
MM_AUTHORIZATION_LOCATION,
context,
- loc_get_auth_cb,
+ (MMAuthRequestCb)loc_get_auth_cb,
info,
loc_auth_info_destroy,
&error)) {