summaryrefslogtreecommitdiff
path: root/telepathy-glib/base-channel.h
diff options
context:
space:
mode:
authorJonathon Jongsma <jonathon.jongsma@collabora.co.uk>2010-08-20 14:05:40 -0500
committerJonathon Jongsma <jonathon.jongsma@collabora.co.uk>2010-08-20 14:05:40 -0500
commit4407389772fc58ef5ea24c9dc3a872636cd3959f (patch)
tree14080765d2536ec4e0d90c5a3b338393bd7bc0a7 /telepathy-glib/base-channel.h
parent1b2ae99ba9a7ca27a5dece5f1b7c645014fd8c1e (diff)
downloadtelepathy-glib-4407389772fc58ef5ea24c9dc3a872636cd3959f.tar.gz
TpBaseChannel: rename add_properties() to fill_immutable_properties()
The new name describes the purpose of the vfunc much better
Diffstat (limited to 'telepathy-glib/base-channel.h')
-rw-r--r--telepathy-glib/base-channel.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/telepathy-glib/base-channel.h b/telepathy-glib/base-channel.h
index 2e7176641..4618d9dc3 100644
--- a/telepathy-glib/base-channel.h
+++ b/telepathy-glib/base-channel.h
@@ -36,7 +36,7 @@ typedef struct _TpBaseChannelClass TpBaseChannelClass;
typedef struct _TpBaseChannelPrivate TpBaseChannelPrivate;
typedef void (*TpBaseChannelCloseFunc) (TpBaseChannel *chan);
-typedef void (*TpBaseChannelAddPropertiesFunc) (TpBaseChannel *chan,
+typedef void (*TpBaseChannelFillPropertiesFunc) (TpBaseChannel *chan,
GHashTable *properties);
struct _TpBaseChannelClass
@@ -49,7 +49,7 @@ struct _TpBaseChannelClass
const gchar **interfaces;
TpBaseChannelCloseFunc close;
- TpBaseChannelAddPropertiesFunc add_properties;
+ TpBaseChannelFillPropertiesFunc fill_immutable_properties;
/*< private >*/
gpointer reserved[10];