summaryrefslogtreecommitdiff
path: root/telepathy-glib/base-client.h
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@gmail.com>2011-08-05 12:46:26 +0200
committerXavier Claessens <xclaesse@gmail.com>2011-08-17 13:20:10 +0200
commit5c198ce94a977f430b898543ce8b8dc53cf74067 (patch)
tree5b32f518f97b7179fa6f459c655a4239ada44e95 /telepathy-glib/base-client.h
parent798a3651a1549433290d1c1d7c9163cfafa912ec (diff)
downloadtelepathy-glib-5c198ce94a977f430b898543ce8b8dc53cf74067.tar.gz
Define _TP_GNUC_DEPRECATED_FOR() and use it where appropriate
Diffstat (limited to 'telepathy-glib/base-client.h')
-rw-r--r--telepathy-glib/base-client.h22
1 files changed, 16 insertions, 6 deletions
diff --git a/telepathy-glib/base-client.h b/telepathy-glib/base-client.h
index c63ee8c22..362e3dee8 100644
--- a/telepathy-glib/base-client.h
+++ b/telepathy-glib/base-client.h
@@ -140,19 +140,29 @@ void tp_base_client_add_handler_capabilities_varargs (TpBaseClient *self,
const gchar *first_token, ...) G_GNUC_NULL_TERMINATED;
void tp_base_client_add_account_features (TpBaseClient *self,
- const GQuark *features, gssize n) _TP_GNUC_DEPRECATED;
+ const GQuark *features, gssize n)
+ _TP_GNUC_DEPRECATED_FOR (tp_simple_client_factory_add_account_features);
+
void tp_base_client_add_account_features_varargs (TpBaseClient *self,
- GQuark feature, ...) _TP_GNUC_DEPRECATED;
+ GQuark feature, ...)
+ _TP_GNUC_DEPRECATED_FOR (tp_simple_client_factory_add_account_features_varargs);
+;
void tp_base_client_add_channel_features (TpBaseClient *self,
- const GQuark *features, gssize n) _TP_GNUC_DEPRECATED;
+ const GQuark *features, gssize n)
+ _TP_GNUC_DEPRECATED_FOR (tp_simple_client_factory_add_channel_features);
void tp_base_client_add_channel_features_varargs (TpBaseClient *self,
- GQuark feature, ...) _TP_GNUC_DEPRECATED;
+ GQuark feature, ...)
+ _TP_GNUC_DEPRECATED_FOR (tp_simple_client_factory_add_channel_features_varargs);
+
void tp_base_client_add_connection_features (TpBaseClient *self,
- const GQuark *features, gssize n) _TP_GNUC_DEPRECATED;
+ const GQuark *features, gssize n)
+ _TP_GNUC_DEPRECATED_FOR (tp_simple_client_factory_add_connection_features);
void tp_base_client_add_connection_features_varargs (TpBaseClient *self,
- GQuark feature, ...) _TP_GNUC_DEPRECATED;
+ GQuark feature, ...)
+ _TP_GNUC_DEPRECATED_FOR (tp_simple_client_factory_add_connection_features_varargs);
+
void tp_base_client_set_channel_factory (TpBaseClient *self,
TpClientChannelFactory *factory) _TP_GNUC_DEPRECATED;