diff options
author | Jonathon Jongsma <jonathon.jongsma@collabora.co.uk> | 2010-08-20 14:05:40 -0500 |
---|---|---|
committer | Jonathon Jongsma <jonathon.jongsma@collabora.co.uk> | 2010-08-20 14:05:40 -0500 |
commit | 4407389772fc58ef5ea24c9dc3a872636cd3959f (patch) | |
tree | 14080765d2536ec4e0d90c5a3b338393bd7bc0a7 /telepathy-glib/base-channel.h | |
parent | 1b2ae99ba9a7ca27a5dece5f1b7c645014fd8c1e (diff) | |
download | telepathy-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.h | 4 |
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]; |