diff libpurple/protocols/qq/group.h @ 15822:32c366eeeb99

sed -ie 's/gaim/purple/g'
author Sean Egan <seanegan@gmail.com>
date Mon, 19 Mar 2007 07:01:17 +0000
parents 5fe8042783c1
children 44b4e8bd759b
line wrap: on
line diff
--- a/libpurple/protocols/qq/group.h	Mon Mar 19 06:11:46 2007 +0000
+++ b/libpurple/protocols/qq/group.h	Mon Mar 19 07:01:17 2007 +0000
@@ -1,9 +1,9 @@
 /**
  * @file group.h
  *
- * 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.
  *
@@ -31,7 +31,7 @@
 #include "roomlist.h"
 #include "qq.h"
 
-#define GAIM_GROUP_QQ_QUN         "QQ 群"
+#define PURPLE_GROUP_QQ_QUN         "QQ 群"
 
 typedef enum {
 	QQ_GROUP_MEMBER_STATUS_NOT_MEMBER = 0x00,	/* default 0x00 means not member */
@@ -41,7 +41,7 @@
 } qq_group_member_status;
 
 typedef struct _qq_group {
-	/* all these will be saved when we exit Gaim */
+	/* all these will be saved when we exit Purple */
 	qq_group_member_status my_status;	/* my status for this group */
 	gchar *my_status_desc;			/* my status description */
 	guint32 internal_group_id;
@@ -57,13 +57,13 @@
 	GList *members;	
 } qq_group;
 
-GList *qq_chat_info(GaimConnection *gc);
-GHashTable *qq_chat_info_defaults(GaimConnection *gc, const gchar *chat_name);
+GList *qq_chat_info(PurpleConnection *gc);
+GHashTable *qq_chat_info_defaults(PurpleConnection *gc, const gchar *chat_name);
 
-void qq_group_init(GaimConnection *gc);
+void qq_group_init(PurpleConnection *gc);
 
-GaimRoomlist *qq_roomlist_get_list(GaimConnection *gc);
+PurpleRoomlist *qq_roomlist_get_list(PurpleConnection *gc);
 
-void qq_roomlist_cancel(GaimRoomlist *list);
+void qq_roomlist_cancel(PurpleRoomlist *list);
 
 #endif