summaryrefslogtreecommitdiff
path: root/gio/gdbusconnection.h
diff options
context:
space:
mode:
authorDavid Zeuthen <davidz@redhat.com>2010-07-07 15:57:37 -0400
committerDavid Zeuthen <davidz@redhat.com>2010-07-07 15:57:37 -0400
commit2d2a321a4b5943d408cabe54e3da48360ae7e4ac (patch)
tree5b86edde1713204d1dc73467f5ae1ba988f22fd0 /gio/gdbusconnection.h
parent62a1ccf526e7b23ac39cdf7251eac5706eef3f57 (diff)
GDBus: Hide class structures for classes we don't want to be subclassed
E.g. move these C structures out of public header files and into their respective C files. Also nuke padding since this is no longer needed. This leaves only GDBusProxy as an extendable type. Signed-off-by: David Zeuthen <davidz@redhat.com>
Diffstat (limited to 'gio/gdbusconnection.h')
-rw-r--r--gio/gdbusconnection.h24
1 files changed, 0 insertions, 24 deletions
diff --git a/gio/gdbusconnection.h b/gio/gdbusconnection.h
index f422ccc2b..f6d36b838 100644
--- a/gio/gdbusconnection.h
+++ b/gio/gdbusconnection.h
@@ -56,30 +56,6 @@ struct _GDBusConnection
GDBusConnectionPrivate *priv;
};
-/**
- * GDBusConnectionClass:
- * @closed: Signal class handler for the #GDBusConnection::closed signal.
- *
- * Class structure for #GDBusConnection.
- *
- * Since: 2.26
- */
-struct _GDBusConnectionClass
-{
- /*< private >*/
- GObjectClass parent_class;
-
- /*< public >*/
- /* Signals */
- void (*closed) (GDBusConnection *connection,
- gboolean remote_peer_vanished,
- GError *error);
-
- /*< private >*/
- /* Padding for future expansion */
- gpointer padding[64];
-};
-
GType g_dbus_connection_get_type (void) G_GNUC_CONST;
/* ---------------------------------------------------------------------------------------------------- */