summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2014-03-24 18:36:37 +0000
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2014-03-24 18:36:37 +0000
commit81fa8ef5a18e6479b0a2d62fe758443d4c154137 (patch)
treef51bf3efff149c2fd52c56aca26100ab50efe774
parent2feb59db6ab1b022093f28a50ba81adecf223acd (diff)
downloadtelepathy-haze-81fa8ef5a18e6479b0a2d62fe758443d4c154137.tar.gz
Replace DBusGMethodInvocation with GDBusMethodInvocation
Excluding tools/. Automated: git grep -lz DBusGMethodInvocation | xargs -0 perl -pi -e 's/\bDBusGMethodInvocation\b/GDBusMethodInvocation/g'
-rw-r--r--src/connection-aliasing.c4
-rw-r--r--src/connection-avatars.c8
-rw-r--r--src/connection-capabilities.c2
-rw-r--r--src/connection-mail.c4
-rw-r--r--src/im-channel.c4
5 files changed, 11 insertions, 11 deletions
diff --git a/src/connection-aliasing.c b/src/connection-aliasing.c
index aca47ab..f46467e 100644
--- a/src/connection-aliasing.c
+++ b/src/connection-aliasing.c
@@ -134,7 +134,7 @@ get_alias (HazeConnection *self,
static void
haze_connection_request_aliases (TpSvcConnectionInterfaceAliasing1 *self,
const GArray *contacts,
- DBusGMethodInvocation *context)
+ GDBusMethodInvocation *context)
{
HazeConnection *conn = HAZE_CONNECTION (self);
TpBaseConnection *base = TP_BASE_CONNECTION (conn);
@@ -267,7 +267,7 @@ set_aliases_foreach (gpointer key,
static void
haze_connection_set_aliases (TpSvcConnectionInterfaceAliasing1 *self,
GHashTable *aliases,
- DBusGMethodInvocation *context)
+ GDBusMethodInvocation *context)
{
HazeConnection *conn = HAZE_CONNECTION (self);
TpBaseConnection *base = TP_BASE_CONNECTION (conn);
diff --git a/src/connection-avatars.c b/src/connection-avatars.c
index af266b1..291f684 100644
--- a/src/connection-avatars.c
+++ b/src/connection-avatars.c
@@ -285,7 +285,7 @@ get_handle_token (HazeConnection *conn,
static void
haze_connection_get_known_avatar_tokens (TpSvcConnectionInterfaceAvatars1 *self,
const GArray *contacts,
- DBusGMethodInvocation *context)
+ GDBusMethodInvocation *context)
{
HazeConnection *conn = HAZE_CONNECTION (self);
TpBaseConnection *base_conn = TP_BASE_CONNECTION (conn);
@@ -348,7 +348,7 @@ haze_connection_get_known_avatar_tokens (TpSvcConnectionInterfaceAvatars1 *self,
static void
haze_connection_request_avatars (TpSvcConnectionInterfaceAvatars1 *self,
const GArray *contacts,
- DBusGMethodInvocation *context)
+ GDBusMethodInvocation *context)
{
HazeConnection *conn = HAZE_CONNECTION (self);
TpBaseConnection *base = TP_BASE_CONNECTION (conn);
@@ -375,7 +375,7 @@ haze_connection_request_avatars (TpSvcConnectionInterfaceAvatars1 *self,
static void
haze_connection_clear_avatar (TpSvcConnectionInterfaceAvatars1 *self,
- DBusGMethodInvocation *context)
+ GDBusMethodInvocation *context)
{
HazeConnection *conn = HAZE_CONNECTION (self);
TpBaseConnection *base_conn = TP_BASE_CONNECTION (conn);
@@ -392,7 +392,7 @@ static void
haze_connection_set_avatar (TpSvcConnectionInterfaceAvatars1 *self,
const GArray *avatar,
const gchar *mime_type,
- DBusGMethodInvocation *context)
+ GDBusMethodInvocation *context)
{
HazeConnection *conn = HAZE_CONNECTION (self);
TpBaseConnection *base_conn = TP_BASE_CONNECTION (conn);
diff --git a/src/connection-capabilities.c b/src/connection-capabilities.c
index 0d7c1b9..35489e5 100644
--- a/src/connection-capabilities.c
+++ b/src/connection-capabilities.c
@@ -33,7 +33,7 @@
static void
haze_connection_update_capabilities (TpSvcConnectionInterfaceContactCapabilities1 *iface,
const GPtrArray *clients,
- DBusGMethodInvocation *context)
+ GDBusMethodInvocation *context)
{
HazeConnection *self = HAZE_CONNECTION (iface);
TpBaseConnection *base = (TpBaseConnection *) self;
diff --git a/src/connection-mail.c b/src/connection-mail.c
index 5fd9aa8..716f684 100644
--- a/src/connection-mail.c
+++ b/src/connection-mail.c
@@ -44,7 +44,7 @@ static GPtrArray empty_array = { 0 };
static void
haze_connection_mail_request_inbox_url (
TpSvcConnectionInterfaceMailNotification1 *iface,
- DBusGMethodInvocation *context)
+ GDBusMethodInvocation *context)
{
GError e = {TP_ERROR, TP_ERROR_NOT_IMPLEMENTED,
"LibPurple does not provide Inbox URL"};
@@ -57,7 +57,7 @@ haze_connection_mail_request_mail_url (
TpSvcConnectionInterfaceMailNotification1 *iface,
const gchar *in_id,
const GValue *in_url_data,
- DBusGMethodInvocation *context)
+ GDBusMethodInvocation *context)
{
GValueArray *result;
diff --git a/src/im-channel.c b/src/im-channel.c
index d3af808..d4d14c2 100644
--- a/src/im-channel.c
+++ b/src/im-channel.c
@@ -115,7 +115,7 @@ haze_im_channel_get_interfaces (TpBaseChannel *base)
*/
static void
haze_im_channel_destroy (TpSvcChannelInterfaceDestroyable1 *iface,
- DBusGMethodInvocation *context)
+ GDBusMethodInvocation *context)
{
HazeIMChannel *self = HAZE_IM_CHANNEL (iface);
@@ -174,7 +174,7 @@ resend_typing_cb (gpointer data)
static void
haze_im_channel_set_chat_state (TpSvcChannelInterfaceChatState1 *self,
guint state,
- DBusGMethodInvocation *context)
+ GDBusMethodInvocation *context)
{
HazeIMChannel *chan = HAZE_IM_CHANNEL (self);