diff options
Diffstat (limited to 'src/mm-auth-request.c')
-rw-r--r-- | src/mm-auth-request.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mm-auth-request.c b/src/mm-auth-request.c index 79f0d421..03de3a6d 100644 --- a/src/mm-auth-request.c +++ b/src/mm-auth-request.c @@ -22,7 +22,7 @@ G_DEFINE_TYPE (MMAuthRequest, mm_auth_request, G_TYPE_OBJECT) typedef struct { GObject *owner; char *auth; - DBusGMethodInvocation *context; + gpointer context; MMAuthRequestCb callback; gpointer callback_data; @@ -35,7 +35,7 @@ GObject * mm_auth_request_new (GType atype, const char *authorization, GObject *owner, - DBusGMethodInvocation *context, + gpointer context, MMAuthRequestCb callback, gpointer callback_data, GDestroyNotify notify) |