summaryrefslogtreecommitdiff
path: root/telepathy-glib/proxy-methods.c
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2009-10-13 13:47:44 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2009-10-16 14:55:16 +0100
commite38e9b98bebfb9646a0a55083414b070aac8b029 (patch)
treec20dd9dc66778f8581d15dde687c8c68ac5e035f /telepathy-glib/proxy-methods.c
parent8b72c84d516b56ec9bcef3973e6020db84cf1545 (diff)
downloadtelepathy-glib-e38e9b98bebfb9646a0a55083414b070aac8b029.tar.gz
tp_proxy_pending_call_v0_new: rename @interface to @iface
Same rationale as previous commit.
Diffstat (limited to 'telepathy-glib/proxy-methods.c')
-rw-r--r--telepathy-glib/proxy-methods.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/telepathy-glib/proxy-methods.c b/telepathy-glib/proxy-methods.c
index 011dcd8de..cc4878089 100644
--- a/telepathy-glib/proxy-methods.c
+++ b/telepathy-glib/proxy-methods.c
@@ -198,9 +198,9 @@ _tp_proxy_pending_call_dgproxy_destroy (DBusGProxy *iface_proxy,
/**
* tp_proxy_pending_call_v0_new:
* @self: a proxy
- * @interface: a quark whose string value is the D-Bus interface
+ * @iface: a quark whose string value is the D-Bus interface
* @member: the name of the method being called
- * @iface_proxy: the interface-specific #DBusGProxy for @interface
+ * @iface_proxy: the interface-specific #DBusGProxy for @iface
* @invoke_callback: an implementation of #TpProxyInvokeFunc which will
* invoke @callback with appropriate arguments
* @callback: a callback to be called when the call completes
@@ -241,7 +241,7 @@ _tp_proxy_pending_call_dgproxy_destroy (DBusGProxy *iface_proxy,
*/
TpProxyPendingCall *
tp_proxy_pending_call_v0_new (TpProxy *self,
- GQuark interface,
+ GQuark iface,
const gchar *member,
DBusGProxy *iface_proxy,
TpProxyInvokeFunc invoke_callback,
@@ -259,7 +259,7 @@ tp_proxy_pending_call_v0_new (TpProxy *self,
pc = g_slice_new0 (TpProxyPendingCall);
MORE_DEBUG ("(proxy=%p, if=%s, meth=%s, ic=%p; cb=%p, ud=%p, dn=%p, wo=%p)"
- " -> %p", self, g_quark_to_string (interface), member, invoke_callback,
+ " -> %p", self, g_quark_to_string (iface), member, invoke_callback,
callback, user_data, destroy, weak_object, pc);
pc->proxy = g_object_ref (self);