From 6a4596752c074fbfd10eec0462d6a3f7ac62dfc8 Mon Sep 17 00:00:00 2001 From: Murray Cumming Date: Sun, 19 Jun 2005 15:31:25 +0000 Subject: 2005-06-18 Murray Cumming * dbus/dbus-glib.h: * glib/dbus-gobject.c: * glib/dbus-gproxy.c: * glib/dbus-gvalue.c: Predeclare structs as typedef struct _Something Something instead of typedef struct Something Something, so we can redeclare the prototypes. Other GNOME libraries do this already. --- glib/dbus-gobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'glib/dbus-gobject.c') diff --git a/glib/dbus-gobject.c b/glib/dbus-gobject.c index 40d1da03..370862f3 100644 --- a/glib/dbus-gobject.c +++ b/glib/dbus-gobject.c @@ -757,7 +757,7 @@ gerror_to_dbus_error_message (const DBusGObjectInfo *object_info, * The context of an asynchronous method call. See dbus_g_method_return() and * dbus_g_method_return_error(). */ -struct DBusGMethodInvocation { +struct _DBusGMethodInvocation { DBusGConnection *connection; /**< The connection */ DBusGMessage *message; /**< The message which generated the method call */ const DBusGObjectInfo *object; /**< The object the method was called on */ -- cgit