summaryrefslogtreecommitdiff
path: root/telepathy-glib/base-protocol.h
diff options
context:
space:
mode:
authorAndre Moreira Magalhaes (andrunko) <andre.magalhaes@collabora.co.uk>2011-11-14 14:45:41 -0200
committerAndre Moreira Magalhaes (andrunko) <andre.magalhaes@collabora.co.uk>2011-11-21 12:46:13 -0200
commitbbb6c4d0f33bbdb7a7769fdf145f0811d64a92cf (patch)
tree29dae7685dc8aa819268fc26287996dd20686ad8 /telepathy-glib/base-protocol.h
parent6e827ab08236680481ce027258c517b62a68adf2 (diff)
downloadtelepathy-glib-bbb6c4d0f33bbdb7a7769fdf145f0811d64a92cf.tar.gz
TpBaseProtocol: Add "Func" Suffix to TpBaseProtocolDupSupportedVCardFields and TpBaseProtocolDupSupportedURISchemes.
Diffstat (limited to 'telepathy-glib/base-protocol.h')
-rw-r--r--telepathy-glib/base-protocol.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/telepathy-glib/base-protocol.h b/telepathy-glib/base-protocol.h
index 094340c1b..3a8e557e1 100644
--- a/telepathy-glib/base-protocol.h
+++ b/telepathy-glib/base-protocol.h
@@ -197,9 +197,9 @@ TpBaseConnection *tp_base_protocol_new_connection (TpBaseProtocol *self,
typedef struct _TpProtocolAddressingInterface TpProtocolAddressingInterface;
-typedef GStrv (*TpBaseProtocolDupSupportedVCardFields) (TpBaseProtocol *self);
+typedef GStrv (*TpBaseProtocolDupSupportedVCardFieldsFunc) (TpBaseProtocol *self);
-typedef GStrv (*TpBaseProtocolDupSupportedURISchemes) (TpBaseProtocol *self);
+typedef GStrv (*TpBaseProtocolDupSupportedURISchemesFunc) (TpBaseProtocol *self);
typedef gchar *(*TpBaseProtocolNormalizeVCardAddressFunc) (
TpBaseProtocol *self,
@@ -215,9 +215,9 @@ typedef gchar *(*TpBaseProtocolNormalizeURIFunc) (
struct _TpProtocolAddressingInterface {
GTypeInterface parent;
- TpBaseProtocolDupSupportedVCardFields dup_supported_vcard_fields;
+ TpBaseProtocolDupSupportedVCardFieldsFunc dup_supported_vcard_fields;
- TpBaseProtocolDupSupportedURISchemes dup_supported_uri_schemes;
+ TpBaseProtocolDupSupportedURISchemesFunc dup_supported_uri_schemes;
TpBaseProtocolNormalizeVCardAddressFunc normalize_vcard_address;