summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Jonathan Beck2009-10-10 19:55:51 +0200
committerGravatar Jonathan Beck2009-10-10 19:55:51 +0200
commit009274f4dfb7829f2ee98d46afd5e54892806990 (patch)
tree01b9944d34bf5f640ff278116ea19f22d698fe5d /src
parent77b02c9404dbfef325b7a19228045a817cafe064 (diff)
downloadlibplist-009274f4dfb7829f2ee98d46afd5e54892806990.tar.gz
libplist-009274f4dfb7829f2ee98d46afd5e54892806990.tar.bz2
Reverse argument for dicts to make it clearer.
Diffstat (limited to 'src')
-rw-r--r--src/plist.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/plist.c b/src/plist.c
index 8368d6e..95bc43c 100644
--- a/src/plist.c
+++ b/src/plist.c
@@ -268,15 +268,15 @@ plist_t plist_dict_get_item(plist_t node, const char* key)
if (node && PLIST_DICT == plist_get_node_type(node)) {
plist_t current = NULL;
- for (current = plist_get_first_child(node);
+ for (current = (plist_t)g_node_first_child(node);
current;
- current = plist_get_next_sibling(plist_get_next_sibling(current))) {
+ current = (plist_t)g_node_next_sibling(g_node_next_sibling(current))) {
assert( PLIST_KEY == plist_get_node_type(current) );
plist_data_t data = plist_get_data(current);
if (data && !strcmp(key, data->strval)) {
- ret = plist_get_next_sibling(current);
+ ret = (plist_t)g_node_next_sibling(current);
break;
}
}
@@ -284,7 +284,7 @@ plist_t plist_dict_get_item(plist_t node, const char* key)
return ret;
}
-void plist_dict_set_item(plist_t node, plist_t item, const char* key)
+void plist_dict_set_item(plist_t node, const char* key, plist_t item)
{
if (node && PLIST_DICT == plist_get_node_type(node)) {
plist_t old_item = plist_dict_get_item(node, key);
@@ -297,7 +297,7 @@ void plist_dict_set_item(plist_t node, plist_t item, const char* key)
return;
}
-void plist_dict_insert_item(plist_t node, plist_t item, const char* key)
+void plist_dict_insert_item(plist_t node, const char* key, plist_t item)
{
if (node && PLIST_DICT == plist_get_node_type(node)) {
g_node_append(node, plist_new_key(key));
@@ -357,7 +357,7 @@ static plist_t plist_find_node(plist_t plist, plist_type type, const void *value
if (!plist)
return NULL;
- for (current = plist_get_first_child(plist); current; current = plist_get_next_sibling(current)) {
+ for (current = (plist_t)g_node_first_child(plist); current; current = (plist_t)g_node_next_sibling(current)) {
plist_data_t data = plist_get_data(current);
@@ -658,6 +658,7 @@ void plist_set_date_val(plist_t node, int32_t sec, int32_t usec)
//DEPRECATED API BELOW
+
static plist_t plist_add_sub_element(plist_t node, plist_type type, const void *value, uint64_t length)
{
//only structured types can have children