diff libpurple/xmlnode.c @ 15823:32c366eeeb99

sed -ie 's/gaim/purple/g'
author Sean Egan <seanegan@gmail.com>
date Mon, 19 Mar 2007 07:01:17 +0000
parents c2d75b47198d
children 8bcd5840fb12
line wrap: on
line diff
--- a/libpurple/xmlnode.c	Mon Mar 19 06:11:46 2007 +0000
+++ b/libpurple/xmlnode.c	Mon Mar 19 07:01:17 2007 +0000
@@ -1,9 +1,9 @@
 /**
  * @file xmlnode.c XML DOM functions
  *
- * gaim
+ * purple
  *
- * Gaim is the legal property of its developers, whose names are too numerous
+ * Purple is the legal property of its developers, whose names are too numerous
  * to list here.  Please refer to the COPYRIGHT file distributed with this
  * source distribution.
  *
@@ -51,7 +51,7 @@
 	node->name = g_strdup(name);
 	node->type = type;
 
-	GAIM_DBUS_REGISTER_POINTER(node, xmlnode);
+	PURPLE_DBUS_REGISTER_POINTER(node, xmlnode);
 
 	return node;
 }
@@ -278,7 +278,7 @@
 	g_free(node->data);
 	g_free(node->xmlns);
 
-	GAIM_DBUS_UNREGISTER_POINTER(node);
+	PURPLE_DBUS_UNREGISTER_POINTER(node);
 	g_free(node);
 }
 
@@ -471,7 +471,7 @@
 			memcpy(attrib, attributes[i+3], attrib_len);
 			attrib[attrib_len] = '\0';
 			txt = attrib;
-			attrib = gaim_unescape_html(txt);
+			attrib = purple_unescape_html(txt);
 			g_free(txt);
 			xmlnode_set_attrib(node, (const char*) attributes[i], attrib);
 			g_free(attrib);