diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-10-22 01:17:53 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-10-22 17:43:50 +0800 |
commit | d55286dab59129bd56b8fee99a22b69e731f9f65 (patch) | |
tree | 1129367ffcff4e11987eafea9956f181daebc9c2 | |
parent | d5a1765f414f04f81922603af16f18d7c84f87a0 (diff) | |
download | gsoc2013-empathy-d55286dab59129bd56b8fee99a22b69e731f9f65.tar gsoc2013-empathy-d55286dab59129bd56b8fee99a22b69e731f9f65.tar.gz gsoc2013-empathy-d55286dab59129bd56b8fee99a22b69e731f9f65.tar.bz2 gsoc2013-empathy-d55286dab59129bd56b8fee99a22b69e731f9f65.tar.lz gsoc2013-empathy-d55286dab59129bd56b8fee99a22b69e731f9f65.tar.xz gsoc2013-empathy-d55286dab59129bd56b8fee99a22b69e731f9f65.tar.zst gsoc2013-empathy-d55286dab59129bd56b8fee99a22b69e731f9f65.zip |
empathy-chatroom-manager.c: fix casting issues
-rw-r--r-- | libempathy/empathy-chatroom-manager.c | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/libempathy/empathy-chatroom-manager.c b/libempathy/empathy-chatroom-manager.c index 7d80b9441..b8c721bcb 100644 --- a/libempathy/empathy-chatroom-manager.c +++ b/libempathy/empathy-chatroom-manager.c @@ -90,8 +90,8 @@ chatroom_manager_file_save (EmpathyChatroomManager *manager) priv = GET_PRIV (manager); - doc = xmlNewDoc ("1.0"); - root = xmlNewNode (NULL, "chatrooms"); + doc = xmlNewDoc ((const xmlChar *) "1.0"); + root = xmlNewNode (NULL, (const xmlChar *) "chatrooms"); xmlDocSetRootElement (doc, root); for (l = priv->chatrooms; l; l = l->next) { @@ -108,12 +108,16 @@ chatroom_manager_file_save (EmpathyChatroomManager *manager) account_id = empathy_account_get_unique_name ( empathy_chatroom_get_account (chatroom)); - node = xmlNewChild (root, NULL, "chatroom", NULL); - xmlNewTextChild (node, NULL, "name", empathy_chatroom_get_name (chatroom)); - xmlNewTextChild (node, NULL, "room", empathy_chatroom_get_room (chatroom)); - xmlNewTextChild (node, NULL, "account", account_id); - xmlNewTextChild (node, NULL, "auto_connect", - empathy_chatroom_get_auto_connect (chatroom) ? "yes" : "no"); + node = xmlNewChild (root, NULL, (const xmlChar *) "chatroom", NULL); + xmlNewTextChild (node, NULL, (const xmlChar *) "name", + (const xmlChar *) empathy_chatroom_get_name (chatroom)); + xmlNewTextChild (node, NULL, (const xmlChar *) "room", + (const xmlChar *) empathy_chatroom_get_name (chatroom)); + xmlNewTextChild (node, NULL, (const xmlChar *) "account", + (const xmlChar *) account_id); + xmlNewTextChild (node, NULL, (const xmlChar *) "auto_connect", + empathy_chatroom_get_auto_connect (chatroom) ? + (const xmlChar *) "yes" : (const xmlChar *) "no"); } /* Make sure the XML is indented properly */ |