summaryrefslogtreecommitdiff
path: root/src/mm-auth-provider.c
diff options
context:
space:
mode:
authorAleksander Morgado <aleksander@lanedo.com>2012-02-20 13:36:18 +0100
committerAleksander Morgado <aleksander@lanedo.com>2012-03-16 14:28:15 +0100
commit5bee67c032df8d9127c8c0aeb88cbd3c0c844b4b (patch)
tree096d63dda3141626692eddf313c56070df06fc43 /src/mm-auth-provider.c
parent5f167fd199ce7cc359aa1d884df9b332aa669a79 (diff)
downloadModemManager-5bee67c032df8d9127c8c0aeb88cbd3c0c844b4b.tar.gz
core: use GDBusMethodInvocation in the auth API
Diffstat (limited to 'src/mm-auth-provider.c')
-rw-r--r--src/mm-auth-provider.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/mm-auth-provider.c b/src/mm-auth-provider.c
index ceff9adf9..3799dce97 100644
--- a/src/mm-auth-provider.c
+++ b/src/mm-auth-provider.c
@@ -105,12 +105,12 @@ static MMAuthRequest *
real_create_request (MMAuthProvider *provider,
const char *authorization,
GObject *owner,
- DBusGMethodInvocation *context,
+ GDBusMethodInvocation *context,
MMAuthRequestCb callback,
gpointer callback_data,
GDestroyNotify notify)
{
- return (MMAuthRequest *) mm_auth_request_new (0,
+ return (MMAuthRequest *) mm_auth_request_new (0,
authorization,
owner,
context,
@@ -165,7 +165,7 @@ MMAuthRequest *
mm_auth_provider_request_auth (MMAuthProvider *self,
const char *authorization,
GObject *owner,
- DBusGMethodInvocation *context,
+ GDBusMethodInvocation *context,
MMAuthRequestCb callback,
gpointer callback_data,
GDestroyNotify notify,
@@ -297,4 +297,3 @@ mm_auth_provider_class_init (MMAuthProviderClass *class)
NULL_PROVIDER,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
}
-