summaryrefslogtreecommitdiff
path: root/telepathy-glib/protocol.h
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2012-05-04 16:41:21 +0100
committerXavier Claessens <xavier.claessens@collabora.co.uk>2012-06-04 13:43:09 +0200
commitcacba6db63a23df79f67eb149cedecfe1af052e2 (patch)
tree72a491ed9f0a2f1ba6172119ba34047ddab4883b /telepathy-glib/protocol.h
parent1e9f3817245a25daa2c5829210f7170bca680007 (diff)
downloadtelepathy-glib-cacba6db63a23df79f67eb149cedecfe1af052e2.tar.gz
TpConnectionManagerParam: seal struct fields
We have accessors for all of them, and the GValue is going to be a problem as we move towards GVariant.
Diffstat (limited to 'telepathy-glib/protocol.h')
-rw-r--r--telepathy-glib/protocol.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/telepathy-glib/protocol.h b/telepathy-glib/protocol.h
index 31c4a4605..da729a6c7 100644
--- a/telepathy-glib/protocol.h
+++ b/telepathy-glib/protocol.h
@@ -33,13 +33,12 @@ typedef struct _TpConnectionManagerParam TpConnectionManagerParam;
struct _TpConnectionManagerParam
{
- /*<public>*/
- gchar *name;
- gchar *dbus_signature;
- GValue default_value;
- guint flags;
-
- gpointer priv;
+ /*<private>*/
+ gchar *_TP_SEAL (name);
+ gchar *_TP_SEAL (dbus_signature);
+ GValue _TP_SEAL (default_value);
+ guint _TP_SEAL (flags);
+ gpointer _TP_SEAL (priv);
};
typedef struct _TpProtocol TpProtocol;