diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2012-05-04 16:40:30 +0100 |
---|---|---|
committer | Xavier Claessens <xavier.claessens@collabora.co.uk> | 2012-06-04 13:43:09 +0200 |
commit | 1e9f3817245a25daa2c5829210f7170bca680007 (patch) | |
tree | 5a9746eded45bc99a56d1b61e2433b0a4e222b10 | |
parent | a4e63aa59420a80ce6c3227c048f4aafe0359c1b (diff) |
TpProxy: seal struct fields
They were officially already private.
-rw-r--r-- | telepathy-glib/proxy.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/telepathy-glib/proxy.h b/telepathy-glib/proxy.h index cd2c83850..300b507e9 100644 --- a/telepathy-glib/proxy.h +++ b/telepathy-glib/proxy.h @@ -62,12 +62,12 @@ struct _TpProxy { /*<private>*/ GObject parent; - TpDBusDaemon *dbus_daemon; - DBusGConnection *dbus_connection; - gchar *bus_name; - gchar *object_path; + TpDBusDaemon *_TP_SEAL (dbus_daemon); + DBusGConnection *_TP_SEAL (dbus_connection); + gchar *_TP_SEAL (bus_name); + gchar *_TP_SEAL (object_path); - GError *invalidated /* initialized to NULL by g_object_new */; + GError *_TP_SEAL (invalidated); TpProxyPrivate *priv; }; |