summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXavier Claessens <xavier.claessens@collabora.co.uk>2012-07-05 14:23:46 +0200
committerXavier Claessens <xavier.claessens@collabora.co.uk>2012-07-05 14:23:46 +0200
commite8f9a27a388e2123a3281d610acbcd6a4b17d9a1 (patch)
tree33359ba8ebee20fdda15f4d9b19518e8908d2fc1
parentac0a38eb86993bb2b223f08d3402ff9e1d4be27a (diff)
downloadtelepathy-glib-e8f9a27a388e2123a3281d610acbcd6a4b17d9a1.tar.gz
Remove from doc sealed fields
Otherwise gtk-doc gets confused
-rw-r--r--telepathy-glib/base-channel.c1
-rw-r--r--telepathy-glib/base-channel.h2
-rw-r--r--telepathy-glib/base-connection-manager.c5
-rw-r--r--telepathy-glib/base-connection-manager.h2
4 files changed, 4 insertions, 6 deletions
diff --git a/telepathy-glib/base-channel.c b/telepathy-glib/base-channel.c
index c05db171e..aceb350f2 100644
--- a/telepathy-glib/base-channel.c
+++ b/telepathy-glib/base-channel.c
@@ -61,7 +61,6 @@
* (e.g. #TP_IFACE_CHANNEL_TYPE_TEXT)
* @target_handle_type: The type of handle that is the target of channels of
* this type
- * @interfaces: Deprecated. Replaced by @get_interfaces.
* @close: A virtual function called to close the channel, which will be called
* by tp_base_channel_close() and by the implementation of the Closed D-Bus
* method.
diff --git a/telepathy-glib/base-channel.h b/telepathy-glib/base-channel.h
index 05d67003e..a4c5b1d26 100644
--- a/telepathy-glib/base-channel.h
+++ b/telepathy-glib/base-channel.h
@@ -56,7 +56,9 @@ struct _TpBaseChannelClass
const gchar *channel_type;
TpHandleType target_handle_type;
+ /*< private >*/
const gchar **_TP_SEAL (interfaces);
+ /*< public >*/
TpBaseChannelCloseFunc close;
TpBaseChannelFillPropertiesFunc fill_immutable_properties;
diff --git a/telepathy-glib/base-connection-manager.c b/telepathy-glib/base-connection-manager.c
index 5386f9306..e7b1a6090 100644
--- a/telepathy-glib/base-connection-manager.c
+++ b/telepathy-glib/base-connection-manager.c
@@ -209,11 +209,6 @@ _tp_legacy_protocol_new (TpBaseConnectionManager *cm,
* D-Bus object paths and bus names. Must contain only letters, digits
* and underscores, and may not start with a digit. Must be filled in by
* subclasses in their class_init function.
- * @protocol_params: An array of #TpCMProtocolSpec structures representing
- * the protocols this connection manager supports, terminated by a structure
- * whose name member is %NULL; or %NULL if this CM uses Protocol objects.
- * @new_connection: A #TpBaseConnectionManagerNewConnFunc used to construct
- * new connections, or %NULL if this CM uses Protocol objects.
* @interfaces: A #GStrv of extra D-Bus interfaces implemented
* by instances of this class, which may be filled in by subclasses. The
* default is to list no additional interfaces. Since: 0.11.11
diff --git a/telepathy-glib/base-connection-manager.h b/telepathy-glib/base-connection-manager.h
index 6658c6924..07652ef66 100644
--- a/telepathy-glib/base-connection-manager.h
+++ b/telepathy-glib/base-connection-manager.h
@@ -67,8 +67,10 @@ struct _TpBaseConnectionManagerClass {
GObjectClass parent_class;
const char *cm_dbus_name;
+ /*<private>*/
const TpCMProtocolSpec *_TP_SEAL (protocol_params);
TpBaseConnectionManagerNewConnFunc _TP_SEAL (new_connection);
+ /*< public >*/
const gchar * const *interfaces;