summaryrefslogtreecommitdiff
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
commit8097f0c6b93ff36cab989a37616e7d5e91293ef0 (patch)
treebdd29d11793f44066c2e3b1d2e0bed258442b5b0
parente77707f7de1f66120213577c06a60db03cd4a121 (diff)
TpBaseProtocol: Add "Func" Suffix to TpBaseProtocolDupSupportedVCardFields and TpBaseProtocolDupSupportedURISchemes.
-rw-r--r--glib/docs/reference/telepathy-glib-sections.txt4
-rw-r--r--glib/telepathy-glib/base-protocol.c4
-rw-r--r--glib/telepathy-glib/base-protocol.h8
3 files changed, 8 insertions, 8 deletions
diff --git a/glib/docs/reference/telepathy-glib-sections.txt b/glib/docs/reference/telepathy-glib-sections.txt
index 456276b9f..f952dd6a0 100644
--- a/glib/docs/reference/telepathy-glib-sections.txt
+++ b/glib/docs/reference/telepathy-glib-sections.txt
@@ -5293,8 +5293,8 @@ TP_IS_PROTOCOL_ADDRESSING
TP_PROTOCOL_ADDRESSING_GET_INTERFACE
<SUBSECTION>
TpProtocolAddressingInterface
-TpBaseProtocolDupSupportedVCardFields
-TpBaseProtocolDupSupportedURISchemes
+TpBaseProtocolDupSupportedVCardFieldsFunc
+TpBaseProtocolDupSupportedURISchemesFunc
TpBaseProtocolNormalizeVCardAddressFunc
TpBaseProtocolNormalizeURIFunc
<SUBSECTION Private>
diff --git a/glib/telepathy-glib/base-protocol.c b/glib/telepathy-glib/base-protocol.c
index 3fcaced96..8756afe93 100644
--- a/glib/telepathy-glib/base-protocol.c
+++ b/glib/telepathy-glib/base-protocol.c
@@ -437,7 +437,7 @@ tp_cm_param_filter_string_nonempty (const TpCMParamSpec *paramspec,
*/
/**
- * TpBaseProtocolDupSupportedVCardFields:
+ * TpBaseProtocolDupSupportedVCardFieldsFunc:
* @self: a protocol
*
* Signature of a virtual method to get the supported vCard fields supported by
@@ -450,7 +450,7 @@ tp_cm_param_filter_string_nonempty (const TpCMParamSpec *paramspec,
*/
/**
- * TpBaseProtocolDupSupportedURISchemes:
+ * TpBaseProtocolDupSupportedURISchemesFunc:
* @self: a protocol
*
* Signature of a virtual method to get the supported URI schemes supported by
diff --git a/glib/telepathy-glib/base-protocol.h b/glib/telepathy-glib/base-protocol.h
index 094340c1b..3a8e557e1 100644
--- a/glib/telepathy-glib/base-protocol.h
+++ b/glib/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;