[empathy: 14/26] empathy-chatroom-manager.c: fix casting issues



commit d55286dab59129bd56b8fee99a22b69e731f9f65
Author: Guillaume Desmottes <guillaume desmottes collabora co uk>
Date:   Wed Oct 21 18:17:53 2009 +0100

    empathy-chatroom-manager.c: fix casting issues

 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 7d80b94..b8c721b 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 */



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]