diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2011-05-31 15:55:47 +0100 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2011-09-27 15:31:14 +0100 |
commit | dc766e475f3a42872edbd9c3bcc98714dde8bff7 (patch) | |
tree | 4947238ad09cf813c35fde4e3ddf239bffb35fc3 | |
parent | 9d1cce7c64662733f0b48e52e4d5a1e805a3e246 (diff) |
DBusGProxy: mark struct contents as private
Signed-off-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
Reviewed-by: Cosimo Alfarano <cosimo.alfarano@collabora.co.uk>
Bug: https://bugs.freedesktop.org/show_bug.cgi?id=37793
Bug-NB: related to NB#218973
-rw-r--r-- | dbus/dbus-glib.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dbus/dbus-glib.h b/dbus/dbus-glib.h index 27338fe..95df019 100644 --- a/dbus/dbus-glib.h +++ b/dbus/dbus-glib.h @@ -220,11 +220,13 @@ typedef struct _DBusGProxyClass DBusGProxyClass; struct _DBusGProxy { + /*< private >*/ GObject parent; }; struct _DBusGProxyClass { + /*< private >*/ GObjectClass parent_class; /**< Parent class */ }; |