# HG changeset patch # User Mark Doliner # Date 1249351561 0 # Node ID 4f6883b854a27c5af6fb5a3f45d7c28d8cbc10af # Parent 815d9ce1a8b0ee427d5a3c8b7145c6b690de19c3 We can use the typedef here, right? diff -r 815d9ce1a8b0 -r 4f6883b854a2 libpurple/xmlnode.h --- a/libpurple/xmlnode.h Tue Aug 04 01:23:45 2009 +0000 +++ b/libpurple/xmlnode.h Tue Aug 04 02:06:01 2009 +0000 @@ -53,10 +53,10 @@ XMLNodeType type; /**< The type of the node. */ char *data; /**< The data for the node. */ size_t data_sz; /**< The size of the data. */ - struct _xmlnode *parent; /**< The parent node or @c NULL.*/ - struct _xmlnode *child; /**< The child node or @c NULL.*/ - struct _xmlnode *lastchild; /**< The last child node or @c NULL.*/ - struct _xmlnode *next; /**< The next node or @c NULL. */ + xmlnode *parent; /**< The parent node or @c NULL.*/ + xmlnode *child; /**< The child node or @c NULL.*/ + xmlnode *lastchild; /**< The last child node or @c NULL.*/ + xmlnode *next; /**< The next node or @c NULL. */ char *prefix; /**< The namespace prefix if any. */ GHashTable *namespace_map; /**< The namespace map. */ };