diff options
author | Aleksander Morgado <aleksander@lanedo.com> | 2012-02-20 13:36:18 +0100 |
---|---|---|
committer | Aleksander Morgado <aleksander@lanedo.com> | 2012-03-16 14:28:15 +0100 |
commit | 5bee67c032df8d9127c8c0aeb88cbd3c0c844b4b (patch) | |
tree | 096d63dda3141626692eddf313c56070df06fc43 /src/mm-auth-request.c | |
parent | 5f167fd199ce7cc359aa1d884df9b332aa669a79 (diff) |
core: use GDBusMethodInvocation in the auth API
Diffstat (limited to 'src/mm-auth-request.c')
-rw-r--r-- | src/mm-auth-request.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mm-auth-request.c b/src/mm-auth-request.c index 79f0d421..89e8a356 100644 --- a/src/mm-auth-request.c +++ b/src/mm-auth-request.c @@ -22,7 +22,8 @@ G_DEFINE_TYPE (MMAuthRequest, mm_auth_request, G_TYPE_OBJECT) typedef struct { GObject *owner; char *auth; - DBusGMethodInvocation *context; + + GDBusMethodInvocation *context; MMAuthRequestCb callback; gpointer callback_data; @@ -35,7 +36,7 @@ GObject * mm_auth_request_new (GType atype, const char *authorization, GObject *owner, - DBusGMethodInvocation *context, + GDBusMethodInvocation *context, MMAuthRequestCb callback, gpointer callback_data, GDestroyNotify notify) @@ -179,4 +180,3 @@ mm_auth_request_class_init (MMAuthRequestClass *class) g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0, G_TYPE_NONE); } - |