summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Zeuthen <davidz@redhat.com>2011-03-16 15:58:13 -0400
committerDavid Zeuthen <davidz@redhat.com>2011-03-16 15:58:13 -0400
commit933f5c1981ad6d5df61fccb56174acfe3ce28959 (patch)
tree95d39216bacb262955d9506ede3311570d193484
parent8de858cd1ea4a07d68e2d05598e8df35e1fafe94 (diff)
Avoid double typedefs
Signed-off-by: David Zeuthen <davidz@redhat.com>
-rw-r--r--src/gdbusobject.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/gdbusobject.h b/src/gdbusobject.h
index 58e1278..3c956ff 100644
--- a/src/gdbusobject.h
+++ b/src/gdbusobject.h
@@ -28,8 +28,6 @@
G_BEGIN_DECLS
-typedef struct _GDBusObject GDBusObject;
-
#define G_TYPE_DBUS_OBJECT (g_dbus_object_get_type())
#define G_DBUS_OBJECT(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_DBUS_OBJECT, GDBusObject))
#define G_IS_DBUS_OBJECT(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_DBUS_OBJECT))
@@ -40,7 +38,6 @@ typedef struct _GDBusObject GDBusObject;
*
* A D-Bus object.
*/
-typedef struct _GDBusObject GDBusObject; /* Dummy typedef */
typedef struct _GDBusObjectIface GDBusObjectIface;