ayttm-commits
[Top][All Lists]
Advanced

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

[Ayttm-commits] CVS: ayttm/modules/yahoo2 yahoo.c,1.23,1.24


From: Philip S Tellis <address@hidden>
Subject: [Ayttm-commits] CVS: ayttm/modules/yahoo2 yahoo.c,1.23,1.24
Date: Fri, 24 Jan 2003 08:34:43 -0500

Update of /cvsroot/ayttm/ayttm/modules/yahoo2
In directory subversions:/tmp/cvs-serv13526/modules/yahoo2

Modified Files:
        yahoo.c 
Log Message:
changed GList to LList in many places.  please test.

Index: yahoo.c
===================================================================
RCS file: /cvsroot/ayttm/ayttm/modules/yahoo2/yahoo.c,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- yahoo.c     23 Jan 2003 23:07:21 -0000      1.23
+++ yahoo.c     24 Jan 2003 13:34:41 -0000      1.24
@@ -382,7 +382,7 @@
 
 static eb_local_account * eb_yahoo_find_active_local_account()
 {
-       GList * node;
+       LList * node;
        for (node = accounts; node; node = node->next) {
                eb_local_account *ela = node->data;
                if (ela->connected && ela->service_id == 
SERVICE_INFO.protocol_id)
@@ -395,7 +395,7 @@
 
 static eb_local_account *yahoo_find_local_account_by_id(int id)
 {
-       GList * node;
+       LList * node;
        for (node = accounts; node; node = node->next) {
                eb_local_account *ela = node->data;
                if (ela && ela->service_id == SERVICE_INFO.protocol_id) {
@@ -1068,7 +1068,7 @@
                chat_room->fellows = NULL;
                chat_room->connected = FALSE;
 
-               chat_rooms = g_list_append(chat_rooms, chat_room);
+               chat_rooms = l_list_append(chat_rooms, chat_room);
                chat_room->chat_room_account = ela;
 
                eb_join_chat_room(chat_room);
@@ -1127,7 +1127,7 @@
        chat_room->fellows = NULL;
        chat_room->connected = FALSE;
 
-       chat_rooms = g_list_append(chat_rooms, chat_room);
+       chat_rooms = l_list_append(chat_rooms, chat_room);
        chat_room->chat_room_account = ela;
 
        eb_join_chat_room(chat_room);
@@ -1445,7 +1445,7 @@
 {
        eb_yahoo_chat_room_data *ycrd = chatroom->protocol_local_chat_room_data;
        eb_local_account *ela = yahoo_find_local_account_by_id(ycrd->id);
-       GList *others;  
+       LList *others;  
 
        for (others = chatroom->fellows; others && others->data; 
others=others->next) {
                eb_chat_room_buddy * ecrb = others->data;
@@ -1997,7 +1997,7 @@
 
 static void eb_yahoo_change_group(eb_account * ea, gchar *new_group)
 {
-       GList *node;
+       LList *node;
 
        for (node = accounts; node; node = node->next) {
                eb_local_account *ela = node->data;
@@ -2019,7 +2019,7 @@
 
 static void eb_yahoo_rename_group(gchar *old_group, gchar *new_group)
 {
-       GList *node;
+       LList *node;
 
        for (node = accounts; node; node = node->next) {
                eb_local_account *ela = node->data;
@@ -2371,7 +2371,7 @@
 
 static char *eb_yahoo_get_color(void) { return "#d08020"; }
 
-static GList *psmileys = NULL;
+static LList *psmileys = NULL;
 
 static void yahoo_init_smileys()
 {
@@ -2518,7 +2518,7 @@
        psmileys=add_protocol_smiley(psmileys, "@};-", "rose");
 }
 
-static GList *eb_yahoo_get_smileys(void)
+static LList *eb_yahoo_get_smileys(void)
 {
        if(!psmileys)
                yahoo_init_smileys();





reply via email to

[Prev in Thread] Current Thread [Next in Thread]