diff options
author | Mark Doliner <markdoliner@pidgin.im> | 2009-08-04 02:06:01 +0000 |
---|---|---|
committer | Mark Doliner <markdoliner@pidgin.im> | 2009-08-04 02:06:01 +0000 |
commit | 6c89441c2b2a8af8f8a1169f38686b89498ca084 (patch) | |
tree | 0b1b49a7c4dfca93c5a33b4674869ace825f130b /libpurple/xmlnode.h | |
parent | 3d37b67afb84c6d0537292b33c54db88cb86153f (diff) | |
download | pidgin-6c89441c2b2a8af8f8a1169f38686b89498ca084.tar.gz |
We can use the typedef here, right?
Diffstat (limited to 'libpurple/xmlnode.h')
-rw-r--r-- | libpurple/xmlnode.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libpurple/xmlnode.h b/libpurple/xmlnode.h index cf74edc23a..737bab8443 100644 --- a/libpurple/xmlnode.h +++ b/libpurple/xmlnode.h @@ -53,10 +53,10 @@ struct _xmlnode 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. */ }; |