[Telepathy-commits] [telepathy-mission-control/master] Requests: create_request did not use method context argument
Will Thompson
will.thompson at collabora.co.uk
Wed Dec 17 04:17:26 PST 2008
---
src/mcd-account-requests.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/mcd-account-requests.c b/src/mcd-account-requests.c
index 8429d26..8162b24 100644
--- a/src/mcd-account-requests.c
+++ b/src/mcd-account-requests.c
@@ -98,7 +98,7 @@ on_channel_status_changed (McdChannel *channel, McdChannelStatus status,
static McdChannel *
create_request (McdAccount *account, GHashTable *properties,
guint64 user_time, const gchar *preferred_handler,
- DBusGMethodInvocation *context, gboolean use_existing)
+ gboolean use_existing)
{
McdChannel *channel;
GError *error = NULL;
@@ -146,7 +146,7 @@ account_request_create (McSvcAccountInterfaceChannelRequests *self,
McdChannel *channel;
channel = create_request (MCD_ACCOUNT (self), properties, user_time,
- preferred_handler, context, FALSE);
+ preferred_handler, FALSE);
if (error)
{
dbus_g_method_return_error (context, error);
@@ -170,7 +170,7 @@ account_request_ensure_channel (McSvcAccountInterfaceChannelRequests *self,
McdChannel *channel;
channel = create_request (MCD_ACCOUNT (self), properties, user_time,
- preferred_handler, context, TRUE);
+ preferred_handler, TRUE);
if (error)
{
--
1.5.6.5
More information about the Telepathy-commits
mailing list